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