summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2017-07-07 23:23:21 -0400
committeryenatch <yenatch@gmail.com>2017-07-07 23:23:21 -0400
commit7af1ac9dedd5fcef8eabfe39a10d72f17418a6a4 (patch)
tree8ec5a0ee353976ff9b3131cdde783e9618c03bf2 /tools/Makefile
parentef17a2820d16b9f488875d2d0c07dbc0e1dd0c04 (diff)
Use scan_includes and gfx tools from pokecrystal
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile
new file mode 100644
index 0000000..c3c3d35
--- /dev/null
+++ b/tools/Makefile
@@ -0,0 +1,17 @@
+.PHONY: all clean
+
+CC := gcc
+CFLAGS := -std=c99
+
+tools := \
+ gfx \
+ scan_includes
+
+all: $(tools)
+ @:
+
+clean:
+ rm -f $(tools)
+
+%: %.c
+ $(CC) $(CFLAGS) -o $@ $<