Files
pokecrystal/tools/Makefile
Sylvie 5a53e297cf Sort Pokemon and trainer sprite palettes, with Makefile-specified exceptions (#1137)
This avoids the need to define their order via indexed PNG palettes

It also avoids the need to use gb-asm-tools' palfix.py on custom sprites

Fixes #1136
2024-10-16 10:48:00 -04:00

29 lines
450 B
Makefile

.PHONY: all clean
CC := gcc
CFLAGS := -O3 -flto -std=c11 -Wall -Wextra -pedantic
tools := \
gbcpal \
gfx \
lzcomp \
make_patch \
png_dimensions \
pokemon_animation \
pokemon_animation_graphics \
scan_includes \
stadium
all: $(tools)
@:
clean:
$(RM) $(tools)
lzcomp: CFLAGS += -Wno-strict-overflow -Wno-sign-compare
lzcomp: $(wildcard lz/*.c) $(wildcard lz/*.h)
$(CC) $(CFLAGS) -o $@ lz/*.c
%: %.c common.h
$(CC) $(CFLAGS) -o $@ $<