summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHenny022p <info@henny022.de>2023-03-01 19:34:10 +0100
committerHenny022p <info@henny022.de>2023-03-01 19:34:10 +0100
commit65d861a5c2fb1bc93f5bf84a991bdd21f23be3dd (patch)
tree15f997a72c01182772878ee3576d87f29d826021 /Makefile
parentf9fcc589d0cc96a9ac6016a706154d7ad9eb87b5 (diff)
add dependency to tools to more helper targets
fixes asset extraction and parallel multi version builds without manually building tools first
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e79a3d26..394eacea 100644
--- a/Makefile
+++ b/Makefile
@@ -14,14 +14,14 @@ jp: GAME_VERSION=JP
usa: GAME_VERSION=USA
demo_jp: GAME_VERSION=DEMO_JP
demo_usa: GAME_VERSION=DEMO_USA
-eu jp usa demo_jp demo_usa:
+eu jp usa demo_jp demo_usa: tools
@$(MAKE) GAME_VERSION=$(GAME_VERSION)
custom: tools
@$(MAKE) GAME_VERSION=USA CUSTOM=1
.PHONY: extract_assets
-extract_assets:
+extract_assets: tools
@$(MAKE) -f GBA.mk extract_assets
.PHONY: tools