]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - Makefile
Change the parser to use the hashtable functions
[xonotic/gmqcc.git] / Makefile
index 144fe4cabc2df97a3bcce432d56643c987353130..84334157040d4bf900c8018964ac04bba6d0a62b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,16 +3,16 @@ PREFIX := /usr/local
 BINDIR := $(PREFIX)/bin
 
 CC     ?= clang
-CFLAGS += -Wall -I. -Os
+CFLAGS += -Wall -Wextra -I. -pedantic-errors
 #turn on tons of warnings if clang is present
 ifeq ($(CC), clang)
        CFLAGS +=                         \
                -Weverything                  \
-               -Wno-missing-prototypes       \
                -Wno-padded                   \
                -Wno-format-nonliteral        \
                -Wno-disabled-macro-expansion \
-               -Wno-conversion
+               -Wno-conversion               \
+               -Wno-missing-prototypes
 
 endif
 ifeq ($(track), no)