Added clean parameter to build script.

This commit is contained in:
Faerbit 2014-11-05 12:46:36 +01:00
parent e6912b41ee
commit 0e90159b52

View File

@ -1,5 +1,13 @@
#!/bin/bash
if [[ $1 == "clean" ]]
then
rm -rf build
rm -rf binaries
rm -rf extern/bullet/build
exit
fi
currentDir=$(pwd)
threads=$(($(nproc)+1))