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