]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/Makefile
Merge remote-tracking branch 'origin/master' into cbrutail/hudlaserminsta_fix
[xonotic/xonotic-data.pk3dir.git] / qcsrc / Makefile
1 SCM := $(shell if [ -d .svn ]; then echo svn; elif [ -d ../.git ]; then echo git; fi)
2 PERL ?= perl
3 QCCFLAGS_WATERMARK ?= -DWATERMARK='"$(shell git describe)"' -DCVAR_POPCON=1
4 QCC ?= gmqcc
5
6 VERSION_MESSAGE = $(shell cd server && $(QCC) --version --help)
7 ifneq (,$(findstring GMQCC,$(VERSION_MESSAGE)))
8 # this is gmqcc
9 QCCFLAGS ?= \
10         -std=fteqcc \
11         -Werror -Wall \
12         -Wno-field-redeclared \
13         -Wno-double-declaration \
14         -Wno-uninitialized-global \
15         -O3 \
16         -fadjust-vector-fields \
17         -fftepp \
18         -fftepp-predefs \
19         -frelaxed-switch \
20         -fshort-logic \
21         -fno-perl-logic \
22         -ftranslatable-strings \
23         -fno-initialized-nonconstants \
24         -fno-assign-function-types \
25         -flno \
26         -fcorrect-ternary \
27         -fno-single-vector-defs \
28         -fcorrect-logic \
29         -ftrue-empty-strings \
30         -fno-false-empty-strings \
31         -futf8 \
32         -fno-bail-on-werror \
33         -floop-labels \
34         -funtyped-nil \
35         -fno-permissive \
36         -fvariadic-args \
37         -DNOTIFICATIONS_DEBUG \
38         $(QCCFLAGS_EXTRA) $(QCCFLAGS_WATERMARK)
39 else
40 # this. is. fteqccccccccccccccccccc!
41 QCCFLAGS ?= -Werror -Wno-Q302 -O3 -Ono-return_only -fno-fastarrays $(QCCFLAGS_EXTRA) $(QCCFLAGS_WATERMARK)
42 endif
43
44 # xonotic build system overrides this by command line argument to turn off the update-cvarcount step
45 XON_BUILDSYSTEM =
46
47 all: qc
48
49 .PHONY: qc
50 qc:
51         $(MAKE) qc-recursive
52
53 .PHONY: qc-recursive
54 qc-recursive: ../menu.dat ../progs.dat ../csprogs.dat
55
56 .PHONY: clean
57 clean:
58         rm -f ../progs.dat ../menu.dat ../csprogs.dat
59
60 FILES_CSPROGS = $(shell find client common warpzonelib csqcmodellib -type f -not -name fteqcc.log -not -name qc.asm) $(wildcard server/w_*.qc)
61 ../csprogs.dat: $(FILES_CSPROGS)
62         @echo make[1]: Entering directory \`$(PWD)/client\'
63         cd client && $(QCC) $(QCCFLAGS)
64
65 FILES_PROGS = $(shell find server common warpzonelib csqcmodellib -type f -not -name fteqcc.log -not -name qc.asm) $(wildcard server/w_*.qc)
66 ../progs.dat: $(FILES_PROGS)
67         @echo make[1]: Entering directory \`$(PWD)/server\'
68         cd server && $(QCC) $(QCCFLAGS)
69
70 FILES_MENU = $(shell find menu common warpzonelib -type f -not -name fteqcc.log -not -name qc.asm) $(wildcard server/w_*.qc)
71 ../menu.dat: $(FILES_MENU)
72         @echo make[1]: Entering directory \`$(PWD)/menu\'
73         cd menu && $(QCC) $(QCCFLAGS)
74
75 .PHONY: testcase
76 testcase:
77         cd testcase && $(QCC) $(QCCFLAGS) -DTESTCASE="$$TESTCASE"