shithub: pokecrystal

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