pokeyellow/tools/Makefile
dannye bc2354dd66
Some checks failed
CI / build (push) Has been cancelled
CI / build-macos (push) Has been cancelled
Merge branch 'master' of https://github.com/pret/pokered
2026-01-17 22:38:33 -06:00

21 lines
233 B
Makefile

.PHONY: all clean
CC := gcc
CFLAGS := -O3 -std=c11 -Wall -Wextra -pedantic
tools := \
gfx \
make_patch \
pcm \
pkmncompress \
scan_includes
all: $(tools)
@:
clean:
$(RM) $(tools)
%: %.c common.h
$(CC) $(CFLAGS) -o $@ $<