1 SCM := $(shell if [ -d .svn ]; then echo svn; elif [ -d ../.git ]; then echo git; fi)
3 QCCFLAGS_WATERMARK ?= -DWATERMARK='"$(shell git describe)"' -DCVAR_POPCON=1
6 VERSION_MESSAGE = $(shell cd server && $(QCC) --version --help)
7 ifneq (,$(findstring GMQCC,$(VERSION_MESSAGE)))
12 -Wno-field-redeclared \
13 -Wno-double-declaration \
14 -Wno-uninitialized-global \
16 -fadjust-vector-fields \
22 -ftranslatable-strings \
23 -fno-initialized-nonconstants \
24 -fno-assign-function-types \
27 -fno-single-vector-defs \
29 -ftrue-empty-strings \
30 -fno-false-empty-strings \
37 $(QCCFLAGS_EXTRA) $(QCCFLAGS_WATERMARK)
39 # this. is. fteqccccccccccccccccccc!
40 QCCFLAGS ?= -Werror -Wno-Q302 -O3 -Ono-return_only -fno-fastarrays $(QCCFLAGS_EXTRA) $(QCCFLAGS_WATERMARK)
43 # xonotic build system overrides this by command line argument to turn off the update-cvarcount step
53 qc-recursive: ../menu.dat ../progs.dat ../csprogs.dat
57 rm -f ../progs.dat ../menu.dat ../csprogs.dat
59 FILES_CSPROGS = $(shell find client common warpzonelib csqcmodellib -type f -not -name fteqcc.log -not -name qc.asm) $(wildcard server/w_*.qc)
60 ../csprogs.dat: $(FILES_CSPROGS)
61 @echo make[1]: Entering directory \`$(PWD)/client\'
62 cd client && $(QCC) $(QCCFLAGS)
64 FILES_PROGS = $(shell find server common warpzonelib csqcmodellib -type f -not -name fteqcc.log -not -name qc.asm) $(wildcard server/w_*.qc)
65 ../progs.dat: $(FILES_PROGS)
66 @echo make[1]: Entering directory \`$(PWD)/server\'
67 cd server && $(QCC) $(QCCFLAGS)
69 FILES_MENU = $(shell find menu common warpzonelib -type f -not -name fteqcc.log -not -name qc.asm) $(wildcard server/w_*.qc)
70 ../menu.dat: $(FILES_MENU)
71 @echo make[1]: Entering directory \`$(PWD)/menu\'
72 cd menu && $(QCC) $(QCCFLAGS)
76 cd testcase && $(QCC) $(QCCFLAGS) -DTESTCASE="$$TESTCASE"