From 08ef2920cf29a3cc01b7fa44bb0ae00bddb017ea Mon Sep 17 00:00:00 2001 From: Steve Date: Sat, 7 Jul 2018 07:00:45 +0100 Subject: [PATCH] Don't treat warnings as errors. --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 9bd6582..2753798 100644 --- a/makefile +++ b/makefile @@ -20,7 +20,7 @@ _OBJS += unixInit.o include common.mk CXXFLAGS += `sdl2-config --cflags` -DVERSION=$(VERSION) -DREVISION=$(REVISION) -DDATA_DIR=\"$(DATA_DIR)\" -DLOCALE_DIR=\"$(LOCALE_DIR)\" -CXXFLAGS += -Wall -Wempty-body -ansi -pedantic -Werror -Wstrict-prototypes -Werror=maybe-uninitialized -Warray-bounds +CXXFLAGS += -Wall -Wempty-body -ansi -pedantic -Wstrict-prototypes -Werror=maybe-uninitialized -Warray-bounds CXXFLAGS += -g -lefence CXXFLAGS += -fms-extensions -std=gnu11