Files
pokeyellow/tools/Makefile
Rangi 2f25a18de3
Some checks failed
CI / build (push) Has been cancelled
CI / build-macos (push) Has been cancelled
Merge remote-tracking branch 'pokered/master'
2026-08-27 18:30:18 -04:00

21 lines
233 B
Makefile

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