lists/Makefile

18 lines
480 B
Makefile
Raw 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
2025-02-11 06:06:11 +00:00
list: fteqw64
2025-02-04 12:48:13 +00:00
./start.sh
2025-02-11 04:41:53 +00:00
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
2025-02-11 04:41:53 +00:00
index:
./index.sh