mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
202cea9705
- Add a clean target to the tools Makefile - Run said clean target when cleaning the pokecrystal directory
19 lines
202 B
Makefile
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 $@ $<
|