diff options
author | Xerxes Rånby <[email protected]> | 2012-11-22 09:18:59 +0100 |
---|---|---|
committer | Xerxes Rånby <[email protected]> | 2012-11-22 09:18:59 +0100 |
commit | b8b4c89e2fa7acf201a1206bad74b91afa7d2308 (patch) | |
tree | 1b1f5d1e8663d37da1d52db444946af6517b54c4 /make/scripts | |
parent | 7be220314387769c116efd8090f15dd31491bab0 (diff) |
Add make/scripts/make.joal.all.linux-armv6hf.sh
Signed-off-by: Xerxes Rånby <[email protected]>
Diffstat (limited to 'make/scripts')
-rwxr-xr-x | make/scripts/make.joal.all.linux-armv6hf.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/make/scripts/make.joal.all.linux-armv6hf.sh b/make/scripts/make.joal.all.linux-armv6hf.sh new file mode 100755 index 0000000..24ae228 --- /dev/null +++ b/make/scripts/make.joal.all.linux-armv6hf.sh @@ -0,0 +1,31 @@ +#! /bin/sh + +SDIR=`dirname $0` + +if [ -e $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-armv6hf.sh ] ; then + . $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-armv6hf.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-linux-armv6hf \ +# -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-linux-armv6hf \ + $* 2>&1 | tee make.joal.all.linux-armv6hf.log |