mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-02-04 11:14:14 +00:00
12f4148608
This commit now install everything with FHS-compliant structure (/usr/local/bin/hl2_launcher and lib/libtier0.so lib/lib...). Binaries and libraries now uses rpath and not depends on local bin/ directory unlike original Valve's Source.
8 lines
209 B
Bash
Executable File
8 lines
209 B
Bash
Executable File
#!/bin/sh
|
|
|
|
git submodule init && git submodule update
|
|
./waf configure -T release --sanitize=address,undefined --disable-warns --tests -8 --prefix=out/ $* &&
|
|
./waf install &&
|
|
cd out &&
|
|
./bin/unittest || exit 1
|