pokered/tools/Makefile
2026-04-20 10:30:56 +00:00

23 lines
288 B
Makefile

.PHONY: all clean format
CC := gcc
CFLAGS := -O3 -std=c11 -Wall -Wextra -pedantic
tools := \
gfx \
make_patch \
pkmncompress \
scan_includes
all: $(tools)
@:
clean:
$(RM) $(tools)
format:
clang-format -i $$(git ls-files '*.h' '*.c')
%: %.c common.h
$(CC) $(CFLAGS) -o $@ $<