ref: 0af787ea6d42d6f9c16f952b46519ab94f356abb
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 $@ $<