mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 11:37:40 +01:00
a839463c84
Don't do recursive makes for COMPARE and MODERN, use minimal makefile for making tools.
13 lines
248 B
Makefile
13 lines
248 B
Makefile
|
|
TOOLDIRS := $(filter-out tools/agbcc tools/binutils,$(wildcard tools/*))
|
|
TOOLBASE = $(TOOLDIRS:tools/%=%)
|
|
TOOLS = $(foreach tool,$(TOOLBASE),tools/$(tool)/$(tool)$(EXE))
|
|
|
|
.PHONY: all $(TOOLDIRS)
|
|
|
|
all: $(TOOLDIRS)
|
|
@:
|
|
|
|
$(TOOLDIRS):
|
|
@$(MAKE) -C $@
|