diff options
-rwxr-xr-x | make/scripts/make.gluegen.all.solaris-x86.sh | 20 | ||||
-rwxr-xr-x | make/scripts/make.gluegen.all.solaris-x86_64.sh | 20 |
2 files changed, 40 insertions, 0 deletions
diff --git a/make/scripts/make.gluegen.all.solaris-x86.sh b/make/scripts/make.gluegen.all.solaris-x86.sh new file mode 100755 index 0000000..d791a3c --- /dev/null +++ b/make/scripts/make.gluegen.all.solaris-x86.sh @@ -0,0 +1,20 @@ +#! /bin/sh + +SDIR=`dirname $0` + +if [ -e $SDIR/setenv-build-jogl-x86.sh ] ; then + . $SDIR/setenv-build-jogl-x86.sh +fi + +# -Dc.compiler.debug=true +# -Dgluegen.cpptasks.detected.os=true \ +# -DisUnix=true \ +# -DisLinux=true \ +# -DisLinuxAMD64=true \ +# -DisX11=true \ + +# BUILD_ARCHIVE=true \ +ant \ + -Djavacdebuglevel="source,lines,vars" \ + -Drootrel.build=build-solaris-x86 \ + $* 2>&1 | tee make.gluegen.all.solaris-x86.log diff --git a/make/scripts/make.gluegen.all.solaris-x86_64.sh b/make/scripts/make.gluegen.all.solaris-x86_64.sh new file mode 100755 index 0000000..dfd40dc --- /dev/null +++ b/make/scripts/make.gluegen.all.solaris-x86_64.sh @@ -0,0 +1,20 @@ +#! /bin/sh + +SDIR=`dirname $0` + +if [ -e $SDIR/setenv-build-jogl-x86_64.sh ] ; then + . $SDIR/setenv-build-jogl-x86_64.sh +fi + +# -Dc.compiler.debug=true +# -Dgluegen.cpptasks.detected.os=true \ +# -DisUnix=true \ +# -DisLinux=true \ +# -DisLinuxAMD64=true \ +# -DisX11=true \ + +# BUILD_ARCHIVE=true \ +ant \ + -Djavacdebuglevel="source,lines,vars" \ + -Drootrel.build=build-solaris-x86_64 \ + $* 2>&1 | tee make.gluegen.all.solaris-x86_64.log |