summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@users.noreply.github.com>2020-05-15 09:59:56 -0400
committerGitHub <noreply@github.com>2020-05-15 09:59:56 -0400
commit44f348a8e1334e05b16891a1a019743b723f60da (patch)
tree3dfe55d66196677ce7714b7525a6dea606055253
parented0212006202fc21301dc9bd1d4a8e38f8f665cf (diff)
parent4054f16e711beed59f2b4ba7c5ab0f8876ccca16 (diff)
Merge pull request #1040 from PikalaxALT/toolfix
Fix building modern from clean
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index bda2bf1ca..27d77754c 100644
--- a/Makefile
+++ b/Makefile
@@ -109,13 +109,13 @@ MAKEFLAGS += --no-print-directory
# Secondary expansion is required for dependency variables in object rules.
.SECONDEXPANSION:
-.PHONY: all rom clean compare tidy tools mostlyclean clean-tools $(TOOLDIRS) berry_fix libagbsyscall
+.PHONY: all rom clean compare tidy tools mostlyclean clean-tools $(TOOLDIRS) berry_fix libagbsyscall modern
infoshell = $(foreach line, $(shell $1 | sed "s/ /__SPACE__/g"), $(info $(subst __SPACE__, ,$(line))))
# Build tools when building the rom
# Disable dependency scanning for clean/tidy/tools
-ifeq (,$(filter-out all compare,$(MAKECMDGOALS)))
+ifeq (,$(filter-out all rom compare modern berry_fix libagbsyscall,$(MAKECMDGOALS)))
$(call infoshell, $(MAKE) tools)
else
NODEP := 1