ref: d48a318dbf4b9e07da57980adb5894f5eadb11f7
dir: /tools/Makefile/
.PHONY: all clean CC := gcc CFLAGS := -O3 -std=c99 -Wall -Wextra -Wno-missing-field-initializers tools := scan_includes gfx pkmncompress all: $(tools) @: clean: rm -f $(tools) gfx: common.h %: %.c $(CC) $(CFLAGS) -o $@ $<