diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-11-12 16:38:18 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-11-12 16:38:18 +0300 |
commit | e83d1e8551d258fb4ce04d9aecc6f1cf3fcd0520 (patch) | |
tree | 52b79d065b58e96eb40575e7fc25fe9db92de017 /build | |
parent | 97cf0211b1b2ff066f205d0306c615f895d700dd (diff) | |
download | plus-e83d1e8551d258fb4ce04d9aecc6f1cf3fcd0520.tar.gz plus-e83d1e8551d258fb4ce04d9aecc6f1cf3fcd0520.tar.bz2 plus-e83d1e8551d258fb4ce04d9aecc6f1cf3fcd0520.tar.xz plus-e83d1e8551d258fb4ce04d9aecc6f1cf3fcd0520.zip |
Move make test script to build directory.
Diffstat (limited to 'build')
-rwxr-xr-x | build/maketest.sh | 149 |
1 files changed, 149 insertions, 0 deletions
diff --git a/build/maketest.sh b/build/maketest.sh new file mode 100755 index 000000000..61b20f0fe --- /dev/null +++ b/build/maketest.sh @@ -0,0 +1,149 @@ +#!/bin/sh + +dir=`pwd` +export LANG=C + +cd .. +#--enable-applebuild=yes +#--without-librt + +echo start >build/make.log + +autoreconf -i +echo opengl+debug+guichan >>build/make.log +make clean 2>>build/make.log +./configure --prefix=$dir/run \ +--datadir=$dir/run/share/games \ +--bindir=$dir/run/bin \ +--mandir=$dir/run/share/man \ +--enable-memdebug=yes \ +--with-internalguichan=yes \ +--enable-tcmalloc=no \ +--enable-googleprofiler=no +make -j5 2>>build/make.log + +autoreconf -i +echo opengl+guichan >>build/make.log +make clean 2>>build/make.log +./configure --prefix=$dir/run \ +--datadir=$dir/run/share/games \ +--bindir=$dir/run/bin \ +--mandir=$dir/run/share/man \ +--enable-memdebug=no \ +--with-internalguichan=yes \ +--enable-tcmalloc=no \ +--enable-googleprofiler=no +make -j5 2>>build/make.log + +autoreconf -i +echo opengl >>build/make.log +make clean 2>>build/make.log +./configure --prefix=$dir/run \ +--datadir=$dir/run/share/games \ +--bindir=$dir/run/bin \ +--mandir=$dir/run/share/man \ +--enable-memdebug=no \ +--with-internalguichan=no \ +--enable-tcmalloc=no \ +--enable-googleprofiler=no +make -j5 2>>build/make.log + +autoreconf -i +echo opengl+manaserv >>build/make.log +make clean 2>>build/make.log +./configure --prefix=$dir/run \ +--datadir=$dir/run/share/games \ +--bindir=$dir/run/bin \ +--mandir=$dir/run/share/man \ +--enable-memdebug=no \ +--with-internalguichan=no \ +--enable-tcmalloc=no \ +--enable-googleprofiler=no \ +--enable-manaserv=yes +make -j5 2>>build/make.log + +autoreconf -i +echo opengl+guichan+manaserv >>build/make.log +make clean 2>>build/make.log +./configure --prefix=$dir/run \ +--datadir=$dir/run/share/games \ +--bindir=$dir/run/bin \ +--mandir=$dir/run/share/man \ +--enable-memdebug=no \ +--with-internalguichan=yes \ +--enable-tcmalloc=no \ +--enable-googleprofiler=no \ +--enable-manaserv=yes +make -j5 2>>build/make.log + +autoreconf -i +echo guichan >>build/make.log +make clean 2>>build/make.log +./configure --prefix=$dir/run \ +--datadir=$dir/run/share/games \ +--bindir=$dir/run/bin \ +--mandir=$dir/run/share/man \ +--enable-memdebug=no \ +--with-internalguichan=yes \ +--enable-tcmalloc=no \ +--enable-googleprofiler=no \ +--without-opengl +make -j5 2>>build/make.log + +autoreconf -i +echo "-" >>build/make.log +make clean 2>>build/make.log +./configure --prefix=$dir/run \ +--datadir=$dir/run/share/games \ +--bindir=$dir/run/bin \ +--mandir=$dir/run/share/man \ +--enable-memdebug=no \ +--with-internalguichan=no \ +--enable-tcmalloc=no \ +--enable-googleprofiler=no \ +--without-opengl +make -j5 2>>build/make.log + +autoreconf -i +echo guichan+manaserv >>build/make.log +make clean 2>>build/make.log +./configure --prefix=$dir/run \ +--datadir=$dir/run/share/games \ +--bindir=$dir/run/bin \ +--mandir=$dir/run/share/man \ +--enable-memdebug=no \ +--with-internalguichan=yes \ +--enable-tcmalloc=no \ +--enable-googleprofiler=no \ +--enable-manaserv=yes \ +--without-opengl +make -j5 2>>build/make.log + +autoreconf -i +echo opengl+debug+guichan+portable >>build/make.log +make clean 2>>build/make.log +./configure --prefix=$dir/run \ +--datadir=$dir/run/share/games \ +--bindir=$dir/run/bin \ +--mandir=$dir/run/share/man \ +--enable-memdebug=yes \ +--with-internalguichan=yes \ +--enable-tcmalloc=no \ +--enable-googleprofiler=no \ +--enable-portable=yes +make -j5 2>>build/make.log + +autoreconf -i +echo opengl+guichan+portable+manaserv >>build/make.log +make clean 2>>build/make.log +./configure --prefix=$dir/run \ +--datadir=$dir/run/share/games \ +--bindir=$dir/run/bin \ +--mandir=$dir/run/share/man \ +--enable-memdebug=no \ +--with-internalguichan=yes \ +--enable-tcmalloc=no \ +--enable-googleprofiler=no \ +--enable-manaserv=yes \ +--enable-portable=yes +make -j5 2>>build/make.log |