Files
pokecrystal/tools/Makefile
Rangi 06ec23ccee
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 (#1259)
2026-06-12 12:02:39 -04:00

25 lines
314 B
Makefile

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