poketcg/tools/Makefile
dannye b10768d753 Use rgbgfx instead of gfx.py
and use pokered's Makefile structure
2020-12-13 14:28:35 -06:00

17 lines
195 B
Makefile

.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 $@ $<