diff options
| author | Daniel Harding <33dannye@gmail.com> | 2018-03-10 18:36:19 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-10 18:36:19 -0600 |
| commit | 42cfe3d36192aca4d0c4ca222be0088c03236e0d (patch) | |
| tree | dd050c795930a34af6ea020c00f52dc7116ee49a /tools/Makefile | |
| parent | 37ded1d150197b3784bc351eeeb0a8d9713c2e35 (diff) | |
| parent | 4768fed52d7379704ecd958f171ec0dc2d36efc0 (diff) | |
Merge pull request #177 from yenatch/rgbgfx
Use rgbgfx and c tools instead of the submodule.
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 $@ $< |
