]> git.xonotic.org Git - xonotic/xonotic.git/blobdiff - Makefile
End-user focused Makefile
[xonotic/xonotic.git] / Makefile
index 8be69c8e9ec54aa3834efdd33485431d1ea7d1bb..0b8b752147bd1fab4e0e4fb2b694a53bd8c6c2ec 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,96 +1,95 @@
-PREFIX ?= /usr/local
-BINDIR ?= $(PREFIX)/bin
-LIBDIR ?= $(PREFIX)/lib/xonotic
-DOCDIR ?= $(PREFIX)/share/doc/xonotic
-ZIP ?= zip -9
-INSTALL ?= install
-ARCH ?= $(shell if [ x"`uname -m`" = x"x86_64" ]; then echo linux64; else echo linux32; fi)
-LN ?= ln
-SUFFIX ?= $(shell if [ -d .git ]; then echo git; else echo zip; fi)
-CP ?= cp
-
-
-.PHONY: all
-all: all-$(SUFFIX)
-
-.PHONY: all-git
-all-git:
-       ./all compile -r
-
-.PHONY: all-zip
-all-zip:
-       @echo Sorry, this is not implemented yet
-       @false
-
+DPSRC = source/darkplaces
+D0SRC = source/d0_blind_id
+CLIENT = xonotic-local-sdl
+SERVER = xonotic-local-dedicated
+
+# CC and MAKEFLAGS are always set so ?= has no effect, therefore
+# use CFLAGS to set default optimisations and support user override
+CFLAGS ?= -pipe -march=native -mtune=native -flto=auto
+# user can override this with make -j
+MAKEFLAGS = -j$(shell nproc)
+# DP makefile overrides CFLAGS (exporting CFLAGS does work for d0_blind_id but so does this)
+export CC += $(CFLAGS)
+
+# d0_blind_id header location
+export CC += -I$(PWD)/source/
+# d0_blind_id static libs location
+export CC += -L$(PWD)/$(D0SRC)/.libs/
+# Player IDs: DP_LINK_CRYPTO needs to be set (else it defaults to "dlopen"),
+# it should be set to "shared" but then LIB_CRYPTO gets overridden in DP makefile,
+# and we need to set LIB_CRYPTO such that libgmp gets linked
+export DP_LINK_CRYPTO=foo
+export CFLAGS_CRYPTO=-DLINK_TO_CRYPTO
+export LIB_CRYPTO=-ld0_blind_id -lgmp
+# AES
+export DP_LINK_CRYPTO_RIJNDAEL=shared
+
+
+.PHONY: help
+help:
+       @echo
+       @echo "  ===== Xonotic Makefile for stable and beta releases ====="
+       @echo
+       @echo "The DarkPlaces engine builds will be named $(CLIENT) and $(SERVER) and"
+       @echo "will be preferred by the xonotic-linux-sdl.sh and xonotic-linux-dedicated.sh scripts."
+       @echo
+       @echo "For more info, see https://gitlab.com/xonotic/xonotic/-/wikis/Compiling"
+       @echo
+       @echo "-O3 is already enabled for DarkPlaces. Do not add any math flags!"
+       @echo
+       @echo "MAKEFLAGS=$(MAKEFLAGS)"
+       @echo "CFLAGS= $(CFLAGS)"
+       @echo
+       @echo "  make clean-sources         Delete build objects"
+       @echo "  make clean                 Delete engine builds and build objects"
+       @echo
+       @echo "  make update-stable         Update to the latest stable release via rsync"
+       @echo "  make update-beta           Update to the latest daily autobuild via rsync"
+       @echo
+       @echo "  make server                Compile $(SERVER)"
+       @echo "  make client                Compile $(CLIENT)"
+       @echo "  make both"
+       @echo
+
+.PHONY: nogit
+nogit:
+       @if [ -d .git ]; then \
+               echo "To compile from git sources, please use ./all instead!"; \
+               exit 1; \
+       fi
+
+.PHONY: clean-sources
+clean-sources: nogit
+       $(MAKE) -C $(DPSRC) clean
+       $(MAKE) -C $(D0SRC) clean
 
 .PHONY: clean
-clean: clean-$(SUFFIX)
-
-.PHONY: clean-git
-clean-git:
-       ./all clean
-
-.PHONY: clean-zip
-clean-zip:
-       @echo Sorry, this is not implemented yet
-       @false
-
-
-.PHONY: install-data
-install-data: install-data-$(SUFFIX)
-
-.PHONY: install-data-git
-install-data-git:
-       $(RM) -rf $(LIBDIR)/data
-       $(INSTALL) -d $(LIBDIR)/data
-       for p in data/*.pk3; do $(INSTALL) $$p $(LIBDIR)/$$p || exit 1; done
-       for p in data/*.pk3dir; do ( cd $$p; $(ZIP) -r $(LIBDIR)/$${p%dir} * ) || exit 1; done
-
-.PHONY: install-data-zip
-install-data-zip:
-       $(RM) -rf $(LIBDIR)/data
-       $(INSTALL) -d $(LIBDIR)/data
-       for p in data/*.pk3; do $(INSTALL) $$p $(LIBDIR)/$$p || exit 1; done
-
-
-.PHONY: install-engine
-install-engine: install-engine-$(SUFFIX)
-
-.PHONY: install-engine-git
-install-engine-git:
-       $(INSTALL) -d $(LIBDIR)
-       $(INSTALL) xonotic-linux-glx.sh $(LIBDIR)/xonotic-linux-glx.sh
-       $(INSTALL) xonotic-linux-sdl.sh $(LIBDIR)/xonotic-linux-sdl.sh
-       $(INSTALL) xonotic-linux-dedicated.sh $(LIBDIR)/xonotic-linux-dedicated.sh
-       $(INSTALL) darkplaces/darkplaces-sdl $(LIBDIR)/xonotic-$(ARCH)-sdl
-       $(INSTALL) darkplaces/darkplaces-glx $(LIBDIR)/xonotic-$(ARCH)-glx
-       $(INSTALL) darkplaces/darkplaces-dedicated $(LIBDIR)/xonotic-$(ARCH)-dedicated
+clean: clean-sources
+       $(RM) $(CLIENT) $(SERVER)
 
-.PHONY: install-engine-zip
-install-engine-zip:
-       $(INSTALL) -d $(LIBDIR)
-       $(INSTALL) xonotic-linux-glx.sh $(LIBDIR)/xonotic-linux-glx.sh
-       $(INSTALL) xonotic-linux-sdl.sh $(LIBDIR)/xonotic-linux-sdl.sh
-       $(INSTALL) xonotic-linux-dedicated.sh $(LIBDIR)/xonotic-linux-dedicated.sh
-       $(INSTALL) xonotic-$(ARCH)-sdl $(LIBDIR)/xonotic-$(ARCH)-sdl
-       $(INSTALL) xonotic-$(ARCH)-glx $(LIBDIR)/xonotic-$(ARCH)-glx
-       $(INSTALL) xonotic-$(ARCH)-dedicated $(LIBDIR)/xonotic-$(ARCH)-dedicated
+.PHONY: update-stable
+update-stable: nogit
+       misc/tools/rsync-updater/update-to-release.sh
 
+.PHONY: update-beta
+update-beta: nogit
+       misc/tools/rsync-updater/update-to-autobuild.sh
 
-.PHONY: install-links
-install-links:
-       $(INSTALL) -d $(BINDIR)
-       $(LN) -snf $(LIBDIR)/xonotic-$(ARCH)-sdl $(BINDIR)/xonotic-sdl
-       $(LN) -snf $(LIBDIR)/xonotic-$(ARCH)-glx $(BINDIR)/xonotic-glx
-       $(LN) -snf $(LIBDIR)/xonotic-$(ARCH)-dedicated $(BINDIR)/xonotic-dedicated
+.PHONY: crypto
+crypto: nogit
+       ( cd $(D0SRC) && ./autogen.sh && ./configure --enable-static --disable-shared )
+       $(MAKE) -C $(D0SRC)
 
+.PHONY: server
+server: crypto
+       $(MAKE) -C $(DPSRC) sv-release
+       cp -v $(DPSRC)/darkplaces-dedicated $(SERVER)
 
-.PHONY: install-doc
-install-doc:
-       $(INSTALL) -d $(DOCDIR)/server
-       $(CP) -R Docs/* $(DOCDIR)/
-       $(CP) -R server/* $(DOCDIR)/server
+.PHONY: client
+client: crypto
+       $(MAKE) -C $(DPSRC) sdl-release
+       cp -v $(DPSRC)/darkplaces-sdl $(CLIENT)
 
+.PHONY: both
+both: client server
 
-.PHONY: install
-install: install-data install-engine install-links install-doc