ref: 1e689606a3e25875af72323ea0f45b06ed044b79
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 $@ $<