lists/Makefile
Marco Cawthorne 4fff4ff79e
Some checks failed
Construct / build (push) Has been cancelled
build fteqw directly.
2025-02-10 22:06:11 -08:00

17 lines
480 B
Makefile

ENGINE_URL=https://code.idtech.space/fte/fteqw
ENGINE_CLBUILD=m-dbg
all: list
list: fteqw64
./start.sh
fteqw64:
if [ ! -d ThirdParty/fteqw ];then mkdir -p ThirdParty; git clone --depth 1 $(ENGINE_URL) ThirdParty/fteqw;else cd ./ThirdParty/fteqw && git pull;fi
cd ThirdParty/fteqw/engine && $(MAKE) makelibs ARCH=x86_64
cd ThirdParty/fteqw/engine && $(MAKE) $(ENGINE_CLBUILD) ARCH=x86_64
install -m 0777 ./ThirdParty/fteqw/engine/debug/fteqw ./fteqw64
index:
./index.sh