summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@gmail.com>2020-04-25 21:30:25 -0400
committerPikalaxALT <PikalaxALT@gmail.com>2020-04-25 21:36:27 -0400
commitfc0f4d2c89040c868df82d0da5bfdfc492ea05d4 (patch)
treeda4fbbebc09c86e15a2a5a732a8f8561d038aa48 /Makefile
parent442bb98553233bd38d6117d58df82d30bb83872a (diff)
No need for multiple copies of baserom.nds
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index f67c4348..bfb5ed9e 100644
--- a/Makefile
+++ b/Makefile
@@ -118,12 +118,18 @@ all: $(ROM)
@$(SHA1SUM) -c $(TARGET).sha1
clean: mostlyclean
+ make -C arm9 clean
+ make -C arm7 clean
make -C tools/mwasmarm_patcher clean
mostlyclean: tidy
+ make -C arm9 mostlyclean
+ make -C arm7 mostlyclean
find . \( -iname '*.1bpp' -o -iname '*.4bpp' -o -iname '*.8bpp' -o -iname '*.gbapal' -o -iname '*.lz' \) -exec $(RM) {} +
tidy:
+ make -C arm9 tidy
+ make -C arm7 tidy
$(RM) -r $(BUILD_DIR)
tools: $(TOOLDIRS)