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