ref: 6348ed24fedcae15cd4629bdcddea542d6c44712
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 $@ $<