diff options
author | Xerxes Rånby <[email protected]> | 2012-10-26 17:03:49 +0200 |
---|---|---|
committer | Xerxes Rånby <[email protected]> | 2012-10-26 17:03:49 +0200 |
commit | 7be220314387769c116efd8090f15dd31491bab0 (patch) | |
tree | 0cbe8a6b2756db3395cf565df40672b1321e896a | |
parent | 3c0ad2a52f4900989c95ec16f7f3bff94beb0e13 (diff) |
Add make/scripts/make.joal.all.linux-i586.sh
Signed-off-by: Xerxes Rånby <[email protected]>
-rwxr-xr-x | make/scripts/make.joal.all.linux-i586.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/make/scripts/make.joal.all.linux-i586.sh b/make/scripts/make.joal.all.linux-i586.sh new file mode 100755 index 0000000..ba4e621 --- /dev/null +++ b/make/scripts/make.joal.all.linux-i586.sh @@ -0,0 +1,31 @@ +#! /bin/sh + +SDIR=`dirname $0` + +if [ -e $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-i586.sh ] ; then + . $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-i586.sh +fi + +if [ -z "$ANT_PATH" ] ; then + if [ -e /usr/share/ant/bin/ant -a -e /usr/share/ant/lib/ant.jar ] ; then + ANT_PATH=/usr/share/ant + export ANT_PATH + echo autosetting ANT_PATH to $ANT_PATH + fi +fi +if [ -z "$ANT_PATH" ] ; then + echo ANT_PATH does not exist, set it + exit +fi + +# -Drootrel.build=build-586 \ +# -Dtarget.sourcelevel=1.6 \ +# -Dtarget.targetlevel=1.6 \ +# -Dtarget.rt.jar=/opt-share/jre1.6.0_30/lib/rt.jar \ + +ant \ + -Dtarget.sourcelevel=1.6 \ + -Dtarget.targetlevel=1.6 \ + -Dtarget.rt.jar=/opt-share/jre1.6.0_30/lib/rt.jar \ + -Drootrel.build=build-i586 \ + $* 2>&1 | tee make.joal.all.linux-i586.log |