mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
7b3f0693d5
This gives Cygwin users an easier time at the expense of defaulting to gcc.
23 lines
255 B
Makefile
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 $@ $<
|