From b10768d7539d01df09cdbd2ec66a82406c382e7c Mon Sep 17 00:00:00 2001 From: dannye <33dannye@gmail.com> Date: Sun, 13 Dec 2020 14:27:45 -0600 Subject: Use rgbgfx instead of gfx.py and use pokered's Makefile structure --- 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 0000000..c235fee --- /dev/null +++ b/tools/Makefile @@ -0,0 +1,16 @@ +.PHONY: all clean + +CC := gcc +CFLAGS := -O3 -std=c99 -Wall -Wextra -pedantic + +tools := scan_includes gfx + +all: $(tools) + @: + +clean: + rm -f $(tools) + +gfx: common.h +%: %.c + $(CC) $(CFLAGS) -o $@ $< -- cgit v1.2.3