X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=Makefile;h=f6a21ffe301305671fd17ea32fc945fa0f5f41c9;hb=463426ad47b15c9ae6ac38df0fc308477e3b2ccf;hp=1205294b547ff4fc7b63b9d670ebe8fbe892ba52;hpb=65a2b83abd5d5e04a60e0c9000195643fa9c7757;p=xonotic%2Fgmqcc.git diff --git a/Makefile b/Makefile index 1205294..f6a21ff 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,10 @@ include include.mk UNAME ?= $(shell uname) -CYGWIN = $(findstring CYGWIN, $(UNAME)) -MINGW = $(findstring MINGW32, $(UNAME)) +CYGWIN = $(findstring CYGWIN, $(UNAME)) +MINGW = $(findstring MINGW, $(UNAME)) -CFLAGS += -Wall -Wextra -Werror -Wstrict-aliasing -#turn on tons of warnings if clang is present +# turn on tons of warnings if clang is present # but also turn off the STUPID ONES ifeq ($(CC), clang) CFLAGS += \ @@ -17,6 +16,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 +40,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 @@ -143,6 +144,7 @@ install-doc: ansi.o: platform.h gmqcc.h opts.def util.o: gmqcc.h opts.def platform.h +hash.o: gmqcc.h opts.def stat.o: gmqcc.h opts.def fs.o: gmqcc.h opts.def platform.h opts.o: gmqcc.h opts.def @@ -160,3 +162,4 @@ utf8.o: gmqcc.h opts.def correct.o: gmqcc.h opts.def fold.o: ast.h ir.h gmqcc.h opts.def parser.h lexer.h intrin.o: parser.h gmqcc.h opts.def lexer.h ast.h ir.h +exec.o: gmqcc.h opts.def