diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-05-15 09:59:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-15 09:59:56 -0400 |
commit | 44f348a8e1334e05b16891a1a019743b723f60da (patch) | |
tree | 3dfe55d66196677ce7714b7525a6dea606055253 | |
parent | ed0212006202fc21301dc9bd1d4a8e38f8f665cf (diff) | |
parent | 4054f16e711beed59f2b4ba7c5ab0f8876ccca16 (diff) |
Merge pull request #1040 from PikalaxALT/toolfix
Fix building modern from clean
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |