]> git.xonotic.org Git - xonotic/xonotic.git/blob - Makefile
c1d7a6dd2e389348f9d498e192438bb3cebb823c
[xonotic/xonotic.git] / Makefile
1 DPSRC = source/darkplaces
2 D0SRC = source/d0_blind_id
3 CLIENT = xonotic-local-sdl
4 SERVER = xonotic-local-dedicated
5
6 # CC and MAKEFLAGS are always set so ?= has no effect, therefore
7 # use CFLAGS to set default optimisations and support user override
8 CFLAGS ?= -pipe -march=native -mtune=native -flto=auto
9 # user can override this with make -j
10 MAKEFLAGS = -j$(shell nproc)
11 # DP makefile overrides CFLAGS (exporting CFLAGS does work for d0_blind_id but so does this)
12 export CC += $(CFLAGS)
13
14 # d0_blind_id header location
15 export CC += -I$(PWD)/source/
16 # d0_blind_id static libs location
17 export CC += -L$(PWD)/$(D0SRC)/.libs/
18 # Player IDs: DP_LINK_CRYPTO needs to be set (else it defaults to "dlopen"),
19 # it should be set to "shared" but then LIB_CRYPTO gets overridden in DP makefile,
20 # and we need to set LIB_CRYPTO such that libgmp gets linked
21 export DP_LINK_CRYPTO=foo
22 export CFLAGS_CRYPTO=-DLINK_TO_CRYPTO
23 export LIB_CRYPTO=-ld0_blind_id -lgmp
24 # AES
25 export DP_LINK_CRYPTO_RIJNDAEL=shared
26
27
28 .PHONY: help
29 help:
30         @echo
31         @echo "  ===== Xonotic Makefile for stable and beta releases ====="
32         @echo
33         @echo "The DarkPlaces engine builds will be named $(CLIENT) and $(SERVER) and"
34         @echo "will be preferred by the xonotic-linux-sdl.sh and xonotic-linux-dedicated.sh scripts."
35         @echo
36         @echo "For more info, see https://gitlab.com/xonotic/xonotic/-/wikis/Compiling"
37         @echo
38         @echo "-O3 is already enabled for DarkPlaces. Do not add any math flags!"
39         @echo
40         @echo "MAKEFLAGS=$(MAKEFLAGS)"
41         @echo "CFLAGS= $(CFLAGS)"
42         @echo
43         @echo "  make clean-sources         Delete build objects"
44         @echo "  make clean                 Delete engine builds and build objects"
45         @echo
46         @echo "  make update-stable         Update to the latest stable release via rsync"
47         @echo "  make update-beta           Update to the latest daily autobuild via rsync"
48         @echo
49         @echo "  make server                Compile $(SERVER)"
50         @echo "  make client                Compile $(CLIENT)"
51         @echo "  make both"
52         @echo
53
54 .PHONY: nogit
55 nogit:
56         @if [ -d .git ]; then \
57                 echo "To compile from git sources, please use ./all instead!"; \
58                 exit 1; \
59         fi
60
61 .PHONY: clean-sources
62 clean-sources: nogit
63         $(MAKE) -C $(DPSRC) clean
64         $(MAKE) -C $(D0SRC) clean
65
66 .PHONY: clean
67 clean: clean-sources
68         $(RM) $(CLIENT) $(SERVER)
69
70 .PHONY: update-stable
71 update-stable: nogit
72         misc/tools/rsync-updater/update-to-release.sh
73
74 .PHONY: update-beta
75 update-beta: nogit
76         misc/tools/rsync-updater/update-to-autobuild.sh
77
78 $(D0SRC)/Makefile:
79         ( cd $(D0SRC) && ./autogen.sh && ./configure --enable-static --disable-shared )
80
81 .PHONY: d0_blind_id
82 d0_blind_id: nogit $(D0SRC)/Makefile
83         $(MAKE) -C $(D0SRC)
84
85 .PHONY: server
86 server: d0_blind_id
87         $(MAKE) -C $(DPSRC) sv-release
88         cp -v $(DPSRC)/darkplaces-dedicated $(SERVER)
89
90 .PHONY: client
91 client: d0_blind_id
92         $(MAKE) -C $(DPSRC) sdl-release
93         cp -v $(DPSRC)/darkplaces-sdl $(CLIENT)
94
95 .PHONY: both
96 both: client server
97