diff options
| author | yenatch <yenatch@gmail.com> | 2018-03-10 18:01:54 -0500 |
|---|---|---|
| committer | yenatch <yenatch@gmail.com> | 2018-03-10 18:53:04 -0500 |
| commit | f75049feef17757cd07eb86cf34729c272cefcd5 (patch) | |
| tree | 7297aa8ae7a05b45a60160baa304a7e0088235b7 /tools/Makefile | |
| parent | 37ded1d150197b3784bc351eeeb0a8d9713c2e35 (diff) | |
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 $@ $< |
