1#! /bin/sh
2
3SDIR=`dirname $0`
4
5if [ -e $SDIR/setenv-build-jogl-x86.sh ] ; then
6    . $SDIR/setenv-build-jogl-x86.sh
7fi
8
9#    -Dc.compiler.debug=true
10#    -Dgluegen.cpptasks.detected.os=true \
11#    -DisUnix=true \
12#    -DisLinux=true \
13#    -DisLinuxX86=true \
14#    -DisX11=true \
15#    -Dgluegen-cpptasks.file=`pwd`/lib/gluegen-cpptasks-linux-32bit.xml \
16#
17
18export SOURCE_LEVEL=1.6
19export TARGET_LEVEL=1.6
20export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar
21
22#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org"
23export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet"
24
25ant \
26    -Drootrel.build=build-x86 \
27    $* 2>&1 | tee make.gluegen.all.linux-x86.log
28