shithub: pokecrystal

ref: 818272097951b4e703a28a6ad939aac68d03b7d4
dir: /tools/Makefile/

View raw version
.PHONY: all clean

CC := gcc
CFLAGS := -std=c99

tools := \
	lzcomp \
	png_dimensions \
	scan_includes \
	palette \
	pokemon_animation \
	pokemon_animation_graphics \
	gfx \
	md5
all: $(tools)
	@:

clean:
	rm -f $(tools)

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