Now also compiling lua from source before everything else.

This commit is contained in:
Faerbit 2015-01-15 17:26:37 +01:00
parent 80b03508a5
commit 0483fd995b
2 changed files with 13 additions and 0 deletions

View File

@ -18,6 +18,18 @@ fi
currentDir=$(pwd) currentDir=$(pwd)
threads=$(($(nproc)+1)) threads=$(($(nproc)+1))
#building lua
cd extern/lua/
if [[ $1 == "windows" ]]
then
make mingw
else
make linux
fi
cd $currentDir
#building bullet #building bullet
cd extern/bullet/ cd extern/bullet/

View File

@ -1,2 +1,3 @@
*.o
lua lua
luac luac