ref: b045ac4f16ca9b611a3e3baef0d9a0c33ac6351c
dir: /tools/Makefile/
.PHONY: all clean CC := gcc CFLAGS := -O3 -flto -std=c11 -Wall -Wextra -pedantic tools := \ gfx \ make_patch \ pkmncompress \ scan_includes all: $(tools) @: clean: $(RM) $(tools) gfx: common.h scan_includes: common.h %: %.c $(CC) $(CFLAGS) -o $@ $<