shithub: pokecrystal

ref: 44baefce065e05e276ae4adcec28a4f78fe78d82
dir: /tools/Makefile/

View raw version
.PHONY: all

CFLAGS := -std=c99

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

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