X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=Makefile;h=6f8eb9a82732f86b3ebc2619a6ec461eb3fe819b;hp=38e0784a80aad89bc7f53cc3fdd41f9268b22244;hb=655c2482c97a30c3634c22a13f0ea43f946677b5;hpb=8c0a280a3e0db2e50998a6bf9623dd7f4cb6fb8c diff --git a/Makefile b/Makefile index 38e0784..6f8eb9a 100644 --- 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++) @@ -40,7 +41,8 @@ endif # do this last otherwise there is whitespace in the command output and # it makes my OCD act up -CFLAGS += $(OPTIONAL) +CFLAGS += $(OPTIONAL_CFLAGS) +LDFLAGS += $(OPTIONAL_LDFLAGS) #we have duplicate object files when dealing with creating a simple list #for dependinces. To combat this we use some clever recrusive-make to