mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
f03b898250
md5sum is missing in macOS and (presumably) BSD. An alternative would have been to use sha1sum instead, but it's probably a good idea to have as few dependencies as possible, so this doesn't happen again. fixes #364
18 lines
197 B
Makefile
18 lines
197 B
Makefile
.PHONY: all
|
|
|
|
CFLAGS := -std=c99
|
|
|
|
all: \
|
|
lzcomp \
|
|
png_dimensions \
|
|
scan_includes \
|
|
palette \
|
|
pokemon_animation \
|
|
pokemon_animation_graphics \
|
|
gfx \
|
|
md5
|
|
@:
|
|
|
|
%: %.c
|
|
$(CC) $(CFLAGS) -o $@ $<
|