allow combining -t, -b, etc.

This commit is contained in:
David Rose 2002-01-31 19:43:49 +00:00
parent b5f89092bb
commit a80c111fda
1 changed files with 4 additions and 3 deletions

View File

@ -6,21 +6,22 @@
# -t adds libtoontown
firstarg="$1"
extra_genPyCode_libs=""
if [ "$firstarg" = "-t" ]; then
extra_genPyCode_libs="libtoontown"
extra_genPyCode_libs="$extra_genPyCode_libs libtoontown"
shift
firstarg="$1"
fi
if [ "$firstarg" = "-b" ]; then
extra_genPyCode_libs="libbartop"
extra_genPyCode_libs="$extra_genPyCode_libs libbartop"
shift
firstarg="$1"
fi
if [ "$firstarg" = "-v" ]; then
extra_genPyCode_libs="libvrpn"
extra_genPyCode_libs="$extra_genPyCode_libs libvrpn"
shift
firstarg="$1"
fi