shithub: pokecrystal

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