diff options
| author | Celeste Brault <theredstoneblock0@gmail.com> | 2019-06-09 23:29:11 +0200 |
|---|---|---|
| committer | IIMarckus <iimarckus@gmail.com> | 2019-06-10 19:07:44 -0600 |
| commit | 013ae78d7415ca75b4e648be5f2c906e16bd13b9 (patch) | |
| tree | 7c2039a2d94ea164cf8c9356bcd091f0f3144afc /tools/Makefile | |
| parent | Prefix AnimatedObject labels with w. (diff) | |
| download | pokeyellow-013ae78d7415ca75b4e648be5f2c906e16bd13b9.tar.gz pokeyellow-013ae78d7415ca75b4e648be5f2c906e16bd13b9.tar.xz pokeyellow-013ae78d7415ca75b4e648be5f2c906e16bd13b9.zip | |
Update tools
Diffstat (limited to 'tools/Makefile')
| -rw-r--r-- | tools/Makefile | 16 |
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 $@ $< |
