shithub: pokecrystal

ref: b34b1a5b0c5d5fb62029a596ef0446e68812fc67
dir: /tools/Makefile/

View raw version
.PHONY: all clean

tools := \
	lzcomp \
	png_dimensions \
	scan_includes \
	palette \
	pokemon_animation \
	pokemon_animation_graphics

all: $(tools)
	@:

clean:
	rm -f $(tools)

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