pokecrystal-board/tools/Makefile
Ben10do 202cea9705
- Make the tools implicitly when making the ROM
- Add a clean target to the tools Makefile
- Run said clean target when cleaning the pokecrystal directory
2017-06-09 21:55:09 +01:00

19 lines
202 B
Makefile

.PHONY: all clean
tools := \
lzcomp \
png_dimensions \
scan_includes \
palette \
pokemon_animation \
pokemon_animation_graphics
all: $(tools)
@:
clean:
rm -f $(tools)
%: %.c
$(CC) -o $@ $<