pokegold-spaceworld/tools/Makefile
2020-09-20 17:02:44 -04:00

14 lines
145 B
Makefile

.PHONY: all clean
CFLAGS := -O3 -std=c99 -Wall -Wextra
tools := \
pkmncompress \
gfx \
scan_includes
all: $(tools)
clean:
rm -f $(tools)