shithub: pokecrystal

ref: 80f7477c3343517a96c6effcaf96f40c38f8f4d7
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 $@ $<