summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2017-05-29 19:15:34 -0400
committeryenatch <yenatch@gmail.com>2017-05-29 19:15:34 -0400
commite78034eb8c818036d2cb11c9b87ad8ae366be0cf (patch)
tree85c314d8b2fa6639c97ddbb95e0f2a6e6b17e2b3 /tools
parentc81a7aa1621326827088142fa5cc484bbcca9535 (diff)
Use a separate makefile for tools
- Fix crystal11 - Fix a bug where the dependency checks would run regardless of target Fixes 0bd74cdd7341a4cff5da73e1c32ac0d237ec8e08
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile
new file mode 100644
index 000000000..4a04027fc
--- /dev/null
+++ b/tools/Makefile
@@ -0,0 +1,13 @@
+.PHONY: all
+
+all: \
+ lzcomp \
+ png_dimensions \
+ scan_includes \
+ palette \
+ pokemon_animation \
+ pokemon_animation_graphics
+ @:
+
+%: %.c
+ $(CC) -o $@ $<