summaryrefslogtreecommitdiff
path: root/tools/gbagfx/Makefile
diff options
context:
space:
mode:
authorDizzyEggg <jajkodizzy@wp.pl>2018-09-09 20:30:41 +0200
committerGitHub <noreply@github.com>2018-09-09 20:30:41 +0200
commite21b91cc2f48c4b6bf2cb2d8e97ea1d55c0163bb (patch)
tree78530380aed8ddfdf706824bf2d557152ec8a94c /tools/gbagfx/Makefile
parent6454740587f9a97105c45d54bf4284015a20d6d1 (diff)
parent135e98a82493b2538c030af9b327cb104e27a3dd (diff)
Merge pull request #12 from Slawter666/factory-data
Move battle factory data to C
Diffstat (limited to 'tools/gbagfx/Makefile')
-rw-r--r--tools/gbagfx/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/gbagfx/Makefile b/tools/gbagfx/Makefile
index 6f11b1b3f..c10b258de 100644
--- a/tools/gbagfx/Makefile
+++ b/tools/gbagfx/Makefile
@@ -1,12 +1,15 @@
CC = gcc
-CFLAGS = -Wall -Wextra -Werror -std=c11 -O2 -DPNG_SKIP_SETJMP_CHECK
+CFLAGS = -Wall -Wextra -Werror -std=c11 -O2 -s -DPNG_SKIP_SETJMP_CHECK
LIBS = -lpng -lz
SRCS = main.c convert_png.c gfx.c jasc_pal.c lz.c rl.c util.c font.c
-.PHONY: clean
+.PHONY: all clean
+
+all: gbagfx
+ @:
gbagfx: $(SRCS) convert_png.h gfx.h global.h jasc_pal.h lz.h rl.h util.h font.h
$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) $(LIBS)