summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuild.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 4fa519d36..293eeb2ec 100755
--- a/build.sh
+++ b/build.sh
@@ -7,7 +7,13 @@ if [[ -z "${CMD}" ]]; then
fi
autoreconf
-if [[ "${CMD}" == "default" ]]; then
+if [[ "${CMD}" == "default" || "${CMD}" == "all" ]]; then
+ ./configure --enable-sanitize --disable-lto --enable-packetver=20150000 --enable-debug=gdb
+ make -j3
+ make install
+ cd src/evol
+ ./build.sh
+elif [[ "${CMD}" == "server" ]]; then
./configure --enable-sanitize --disable-lto --enable-packetver=20150000 --enable-debug=gdb
make -j3
make install