From f75049feef17757cd07eb86cf34729c272cefcd5 Mon Sep 17 00:00:00 2001 From: yenatch Date: Sat, 10 Mar 2018 18:01:54 -0500 Subject: Use rgbgfx and c tools instead of the submodule. --- tools/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tools/Makefile (limited to 'tools/Makefile') 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 $@ $< -- cgit v1.2.3