]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - Makefile
remove array-field without parens warning since it seems to not be broken in fteqcc...
[xonotic/gmqcc.git] / Makefile
index 727f68cc07eb9c85eefcebe201bd809e834f7712..84334157040d4bf900c8018964ac04bba6d0a62b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,18 +3,16 @@ PREFIX := /usr/local
 BINDIR := $(PREFIX)/bin
 
 CC     ?= clang
-CFLAGS += -Wall -I. -fomit-frame-pointer -fno-stack-protector -fno-common
+CFLAGS += -Wall -Wextra -I. -pedantic-errors
 #turn on tons of warnings if clang is present
 ifeq ($(CC), clang)
-       CFLAGS +=                  \
+       CFLAGS +=                         \
                -Weverything                  \
-               -Wno-missing-prototypes       \
-               -Wno-unused-parameter         \
-               -Wno-sign-conversion          \
-               -Wno-conversion               \
-               -Wno-disabled-macro-expansion \
                -Wno-padded                   \
-               -Wno-format-nonliteral
+               -Wno-format-nonliteral        \
+               -Wno-disabled-macro-expansion \
+               -Wno-conversion               \
+               -Wno-missing-prototypes
 
 endif
 ifeq ($(track), no)