aboutsummaryrefslogtreecommitdiffstats
path: root/tools/Makefile
diff options
context:
space:
mode:
authorCeleste Brault <theredstoneblock0@gmail.com>2019-06-09 23:29:11 +0200
committerIIMarckus <iimarckus@gmail.com>2019-06-10 19:07:44 -0600
commit013ae78d7415ca75b4e648be5f2c906e16bd13b9 (patch)
tree7c2039a2d94ea164cf8c9356bcd091f0f3144afc /tools/Makefile
parentPrefix AnimatedObject labels with w. (diff)
downloadpokeyellow-013ae78d7415ca75b4e648be5f2c906e16bd13b9.tar.gz
pokeyellow-013ae78d7415ca75b4e648be5f2c906e16bd13b9.tar.xz
pokeyellow-013ae78d7415ca75b4e648be5f2c906e16bd13b9.zip
Update tools
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile
new file mode 100644
index 00000000..13bab1fb
--- /dev/null
+++ b/tools/Makefile
@@ -0,0 +1,16 @@
+.PHONY: all clean
+
+CC := gcc
+CFLAGS := -O3 -std=c99 -Wall -Wextra
+
+tools := scan_includes gfx pkmncompress
+
+all: $(tools)
+ @:
+
+clean:
+ rm -f $(tools)
+
+gfx: common.h
+%: %.c
+ $(CC) $(CFLAGS) -o $@ $<