diff options
Diffstat (limited to 'make/scripts/make.jogl.all.x86_64.sh')
-rwxr-xr-x | make/scripts/make.jogl.all.x86_64.sh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/make/scripts/make.jogl.all.x86_64.sh b/make/scripts/make.jogl.all.x86_64.sh index f5c6b64..110e51d 100755 --- a/make/scripts/make.jogl.all.x86_64.sh +++ b/make/scripts/make.jogl.all.x86_64.sh @@ -1,11 +1,19 @@ #! /bin/sh +SDIR=`dirname $0` + +if [ -e $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh ] ; then + . $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh +fi + +. $SDIR/../../../jogl/etc/profile.jogl JOGL_ALL $SDIR/../../../jogl/build-x86_64 + # -Dc.compiler.debug=true # -Djogl.cg=1 \ # -Djogl.redbook=true \ ant \ -Djogl.cg=1 \ - -Duser.swt.jar=$HOME/.java/swt.jar \ + -Duser.swt.jar=$SWT_CLASSPATH \ -Drootrel.build=build-x86_64 \ $* 2>&1 | tee make.jogl.all.x86_64.log |