diff options
| author | yenatch <yenatch@gmail.com> | 2017-07-07 23:23:21 -0400 |
|---|---|---|
| committer | yenatch <yenatch@gmail.com> | 2017-07-07 23:23:21 -0400 |
| commit | 7af1ac9dedd5fcef8eabfe39a10d72f17418a6a4 (patch) | |
| tree | 8ec5a0ee353976ff9b3131cdde783e9618c03bf2 /tools/Makefile | |
| parent | ef17a2820d16b9f488875d2d0c07dbc0e1dd0c04 (diff) | |
Use scan_includes and gfx tools from pokecrystal
Diffstat (limited to 'tools/Makefile')
| -rw-r--r-- | tools/Makefile | 17 |
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 $@ $< |
