pokecrystal-board/tools/Makefile
yenatch 7b3f0693d5 tools: Default to gcc.
This gives Cygwin users an easier time at the expense of defaulting to gcc.
2017-06-29 18:26:04 -04:00

23 lines
255 B
Makefile

.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 $@ $<