X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2FMakefile;h=5198283b2e7e25b5abbc158a81a462c29d11ed44;hb=83a09ac1cba0fa69d0490ac24bd6202f42e32edf;hp=0ccf4f97163f46b878f38997e525b05f8716077a;hpb=9e3b475574c7fd8f723ff1add74dcc42a80d2939;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/Makefile b/qcsrc/Makefile index 0ccf4f971..5198283b2 100644 --- a/qcsrc/Makefile +++ b/qcsrc/Makefile @@ -1,63 +1,72 @@ SCM := $(shell if [ -d .svn ]; then echo svn; elif [ -d ../.git ]; then echo git; fi) PERL ?= perl -QCCFLAGS_WATERMARK ?= -DWATERMARK='"$(shell git describe)"' +QCCFLAGS_WATERMARK ?= $(shell git describe) +CPP := cc -xc -E QCC ?= gmqcc +NDEBUG ?= 1 +BUILD_MOD ?= 0 QCCVERSIONFILE := qccversion.$(shell (cd server && $(QCC) --version) > qccversion.txt && git hash-object qccversion.txt) -# We eventually need to get rid of these. +# We eventually need to get rid of these QCCFLAGS_WTFS ?= \ -Wno-field-redeclared +QCCDEFS ?= \ + -DWATERMARK="$(QCCFLAGS_WATERMARK)" \ + -DNDEBUG=$(NDEBUG) \ + -DBUILD_MOD=$(BUILD_MOD) \ + $(QCCDEFS_EXTRA) + +# -Ooverlap-locals is required QCCFLAGS ?= \ -std=gmqcc \ - -O3 -flno \ - -Werror -fno-bail-on-werror -Wall \ - -fftepp -fftepp-predefs -Wcpp -futf8 \ + -Ooverlap-locals \ + -O3 \ + -Werror -Wall \ $(QCCFLAGS_WTFS) \ - $(QCCFLAGS_FEATURES) \ - $(QCCFLAGS_EXTRA) $(QCCFLAGS_WATERMARK) - -QCCFLAGS_FEATURES ?= \ - -DVEHICLES_ENABLED=1 \ - -DVEHICLES_USE_ODE=0 \ - -DBUILD_MOD=$(BUILD_MOD) + -flno -futf8 -fno-bail-on-werror \ + -frelaxed-switch -freturn-assignments \ + $(QCCFLAGS_EXTRA) # xonotic build system overrides this by command line argument to turn off the update-cvarcount step XON_BUILDSYSTEM = -all: qc .PHONY: all +all: qc .PHONY: qc qc: ../menu.dat ../progs.dat ../csprogs.dat .PHONY: clean clean: - rm -f ../progs.dat ../menu.dat ../csprogs.dat server/precache-for-csqc.inc + rm -f ../progs.dat ../menu.dat ../csprogs.dat + rm -f tmp/*.qc tmp/*.d tmp/*.txt $(QCCVERSIONFILE): $(RM) qccversion.* echo This file intentionally left blank. > $@ -FILES_CSPROGS = $(shell find client common warpzonelib csqcmodellib -type f -not -name fteqcc.log -not -name qc.asm) -../csprogs.dat: $(FILES_CSPROGS) $(QCCVERSIONFILE) - @echo make[1]: Entering directory \`$(PWD)/client\' - cd client && $(QCC) $(QCCFLAGS) -DCSQC +export QCC +export CPP +export QCCDEFS +export QCCFLAGS -server/precache-for-csqc.inc: $(FILES_CSPROGS) - sh collect-precache.sh +../csprogs.dat: client/progs.inc $(QCCVERSIONFILE) + @echo make[1]: Entering directory \`$(PWD)/client\' + sh ./qcc.sh client $@ $< +-include tmp/client.d -FILES_PROGS = $(shell find server common warpzonelib csqcmodellib -type f -not -name fteqcc.log -not -name qc.asm) -../progs.dat: $(FILES_PROGS) $(QCCVERSIONFILE) server/precache-for-csqc.inc +../progs.dat: server/progs.inc $(QCCVERSIONFILE) @echo make[1]: Entering directory \`$(PWD)/server\' - cd server && $(QCC) $(QCCFLAGS) -DSVQC + sh ./qcc.sh server $@ $< +-include tmp/server.d -FILES_MENU = $(shell find menu common warpzonelib -type f -not -name fteqcc.log -not -name qc.asm) -../menu.dat: $(FILES_MENU) $(QCCVERSIONFILE) +../menu.dat: menu/progs.inc $(QCCVERSIONFILE) @echo make[1]: Entering directory \`$(PWD)/menu\' - cd menu && $(QCC) $(QCCFLAGS) -DMENUQC + sh ./qcc.sh menu $@ $< +-include tmp/menu.d .PHONY: testcase testcase: - cd testcase && $(QCC) $(QCCFLAGS) -DTESTCASE="$$TESTCASE" + cd testcase && $(QCC) $(QCCDEFS) $(QCCFLAGS) -DTESTCASE="$$TESTCASE"