]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - Makefile
Fix vec3_cross. Added optimization to Makefile since we've been compiling gmqcc witho...
[xonotic/gmqcc.git] / Makefile
index 3f286e27f6117db926fbdd051dad85abf3433644..6f8eb9a82732f86b3ebc2619a6ec461eb3fe819b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ UNAME  ?= $(shell uname)
 CYGWIN  = $(findstring CYGWIN, $(UNAME))
 MINGW   = $(findstring MINGW,  $(UNAME))
 
-CFLAGS += -Wall -Wextra -Werror -Wstrict-aliasing -Wno-attributes
+CFLAGS += -Wall -Wextra -Werror -Wstrict-aliasing -Wno-attributes -O3
 #turn on tons of warnings if clang is present
 # but also turn off the STUPID ONES
 ifeq ($(CC), clang)
@@ -17,6 +17,7 @@ ifeq ($(CC), clang)
            -Wno-float-equal                   \
            -Wno-unknown-warning-option        \
            -Wno-cast-align                    \
+           -Wno-assign-enum                   \
            -pedantic-errors
 else
        ifneq ($(CC), g++)