ref: 4e96f9d232cd51be9d51a76f7d0cc6211aaccdca
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 $@ $<