]> de.git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - Makefile
Remove some disabled warnings from the makefile
[xonotic/gmqcc.git] / Makefile
index 727f68cc07eb9c85eefcebe201bd809e834f7712..13a182a496e3855766588fddb2a8c37ef273a8a2 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -6,15 +6,13 @@ CC     ?= clang
 CFLAGS += -Wall -I. -fomit-frame-pointer -fno-stack-protector -fno-common
 #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
 
 endif
 ifeq ($(track), no)