summaryrefslogtreecommitdiff
path: root/tools/gbagfx/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gbagfx/Makefile')
-rw-r--r--tools/gbagfx/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/gbagfx/Makefile b/tools/gbagfx/Makefile
index 1bf37e301..e7f089445 100644
--- a/tools/gbagfx/Makefile
+++ b/tools/gbagfx/Makefile
@@ -1,14 +1,14 @@
CC = gcc
-CFLAGS = -Wall -std=c11 -O2
+CFLAGS = -Wall -Wextra -std=c11 -O2
LIBS = -lz -lpng
-SRCS = main.c convert_png.c gfx.c jasc_pal.c lz.c util.c
+SRCS = main.c convert_png.c gfx.c jasc_pal.c lz.c util.c font.c
.PHONY: clean
-gbagfx: $(SRCS) convert_png.h gfx.h global.h jasc_pal.h lz.h util.h
+gbagfx: $(SRCS) convert_png.h gfx.h global.h jasc_pal.h lz.h util.h font.h
$(CC) $(CFLAGS) $(SRCS) -o $@ $(LIBS)
clean: