shithub: pokecrystal

ref: f12e42ab6d41740a6e9302f1f12250a0f72c3f9d
dir: /tools/Makefile/

View raw version
.PHONY: all

CFLAGS := -std=c99

all: \
	lzcomp \
	png_dimensions \
	scan_includes \
	palette \
	pokemon_animation \
	pokemon_animation_graphics \
	gfx
	@:

%: %.c
	$(CC) $(CFLAGS) -o $@ $<