pokered/tools/Makefile
Rangi d70d99ffbd
Some checks failed
CI / build (push) Has been cancelled
CI / build-macos (push) Has been cancelled
Fix some issues with C tools, and build them with -std=c17 (#587)
2026-06-12 12:02:53 -04:00

20 lines
226 B
Makefile

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