lists/Makefile

17 lines
479 B
Makefile
Raw Permalink Normal View History

2025-02-11 06:06:11 +00:00
ENGINE_URL=https://code.idtech.space/fte/fteqw
ENGINE_CLBUILD=m-dbg
2025-02-04 12:48:13 +00:00
all: list
list:
2025-02-04 12:48:13 +00:00
./start.sh
2025-02-11 04:41:53 +00:00
index: fteqw64
./index.sh
2025-02-11 06:06:11 +00:00
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