pokecrystal-board/tools/Makefile

22 lines
245 B
Makefile
Raw Normal View History

.PHONY: all clean
2017-06-24 13:42:44 -07:00
CFLAGS := -std=c99
tools := \
lzcomp \
png_dimensions \
scan_includes \
palette \
pokemon_animation \
pokemon_animation_graphics \
gfx \
md5
all: $(tools)
@:
clean:
rm -f $(tools)
%: %.c
2017-06-24 13:42:44 -07:00
$(CC) $(CFLAGS) -o $@ $<