Merge branch 'master' into tools-makefile-integration

This commit is contained in:
yenatch
2017-06-24 20:42:25 -04:00
committed by GitHub
1516 changed files with 976 additions and 833 deletions

View File

@@ -1,13 +1,16 @@
.PHONY: all clean
CFLAGS := -std=c99
tools := \
lzcomp \
png_dimensions \
scan_includes \
palette \
pokemon_animation \
pokemon_animation_graphics
pokemon_animation_graphics \
gfx \
md5
all: $(tools)
@:
@@ -15,4 +18,4 @@ clean:
rm -f $(tools)
%: %.c
$(CC) -o $@ $<
$(CC) $(CFLAGS) -o $@ $<