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