pokecrystal/tools/Makefile
2026-06-10 20:10:10 -04:00

25 lines
314 B
Makefile

.PHONY: all clean
CC := gcc
CFLAGS := -O3 -std=c11 -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 $@ $<