Files
pokepuzzle/tools/Makefile
2026-08-12 18:51:45 -04:00

16 lines
201 B
Makefile

.PHONY: all clean
CC := gcc
CFLAGS := -O3 -std=c17 -Wall -Wextra -pedantic
tools := gfx make_patch scan_includes
all: $(tools)
@:
clean:
rm -f $(tools)
%: %.c common.h
$(CC) $(CFLAGS) -o $@ $<