diff options
author | Sven Gothel <[email protected]> | 2014-01-25 15:13:06 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-01-25 15:13:06 +0100 |
commit | 5c5f3b4785835b8abf53474b0c9dc248d1b8dab6 (patch) | |
tree | f608da51d3ea2f0726f6d8475216020351a3b3a5 /scripts | |
parent | f51d6456ab2196bf8ce7d6b3c7ac6d71e9e0108b (diff) |
Bug 884: Move obsolete NB based build files to 'obsolete.make-nb' ; Fix text file suffix ; Fix Jar Manifest: Move Sealed to bottom.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/check-java-major-version.sh | 30 | ||||
-rw-r--r-- | scripts/install-ati-stream.sh | 29 | ||||
-rwxr-xr-x | scripts/make.jocl.all.android-armv6-cross.sh | 99 | ||||
-rwxr-xr-x | scripts/make.jocl.all.linux-armv6-cross.sh | 52 | ||||
-rwxr-xr-x | scripts/make.jocl.all.linux-armv6hf-cross.sh | 52 | ||||
-rw-r--r-- | scripts/make.jocl.all.linux-x86-clang.sh | 21 | ||||
-rw-r--r-- | scripts/make.jocl.all.linux-x86.sh | 18 | ||||
-rw-r--r-- | scripts/make.jocl.all.linux-x86_64-clang.sh | 24 | ||||
-rw-r--r-- | scripts/make.jocl.all.linux-x86_64.sh | 21 | ||||
-rwxr-xr-x | scripts/make.jocl.all.macosx-clang.sh | 25 | ||||
-rw-r--r-- | scripts/make.jocl.all.macosx.sh | 27 | ||||
-rwxr-xr-x | scripts/make.jocl.all.sh | 9 | ||||
-rw-r--r-- | scripts/make.jocl.all.solaris-x86.sh | 18 | ||||
-rw-r--r-- | scripts/make.jocl.all.solaris-x86_64.sh | 18 | ||||
-rw-r--r-- | scripts/make.jocl.all.win32.bat | 19 | ||||
-rw-r--r-- | scripts/make.jocl.all.win64.bat | 19 |
16 files changed, 0 insertions, 481 deletions
diff --git a/scripts/check-java-major-version.sh b/scripts/check-java-major-version.sh deleted file mode 100755 index e163281e..00000000 --- a/scripts/check-java-major-version.sh +++ /dev/null @@ -1,30 +0,0 @@ -#! /bin/bash - -TDIR=`pwd` - -function dump_version() { - echo -n "$1: " - javap -v $1 | grep 'major version' -} - -function dump_versions() { - cd $1 - #dump_version jogamp.common.Debug - for i in `find . -name '*.class'` ; do - dump_version `echo $i | sed -e 's/\//./g' -e 's/\.class//g'` - done - cd $TDIR -} - -function do_it() { - dump_versions $1/classes - dump_versions $1/test/classes -} - -do_it $1 2>&1 | tee check-java-major-version.log -echo -echo VERSIONS found: -echo -grep 'major version' check-java-major-version.log | sort -u - - diff --git a/scripts/install-ati-stream.sh b/scripts/install-ati-stream.sh deleted file mode 100644 index 94d3eca6..00000000 --- a/scripts/install-ati-stream.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash - -# -# Here we have unpacked ati-stream-sdk-v2.1-lnx64.tgz from http://developer.amd.com/gpu/ATIStreamSDK/ -# to /opt-linux-x86_64/ and made a symbolic link to ati-stream-sdk. -# -# We also copied the file http://developer.amd.com/Downloads/icd-registration.tgz -# into ati-stream-sdk. - -SDK=/opt-linux-x86_64/ati-stream-sdk/ -ICDREG=/opt-linux-x86_64/ati-stream-sdk/icd-registration.tgz - -link(){ - if [ -e $2 ] ; then - rm -v $2 - fi - ln -v -s ${SDK}$1/$2 -} - -cd /usr/lib64/ -link lib/x86_64 libOpenCL.so -link lib/x86_64 libatiocl64.so - -cd /usr/lib32/ -link lib/x86 libOpenCL.so -link lib/x86 libatiocl32.so - -cd / -tar xzf $ICDREG diff --git a/scripts/make.jocl.all.android-armv6-cross.sh b/scripts/make.jocl.all.android-armv6-cross.sh deleted file mode 100755 index 01c87a42..00000000 --- a/scripts/make.jocl.all.android-armv6-cross.sh +++ /dev/null @@ -1,99 +0,0 @@ -#! /bin/sh - -if [ -e $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh ] ; then - . $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh -fi - -export NODE_LABEL=. - -export HOST_UID=jogamp -# jogamp02 - 10.1.0.122 -export HOST_IP=10.1.0.122 -export HOST_RSYNC_ROOT=PROJECTS/JOGL - -export TARGET_UID=jogamp -export TARGET_IP=panda02 -#export TARGET_IP=jautab03 -#export TARGET_IP=jauphone04 -export TARGET_ADB_PORT=5555 -# needs executable bit (probably su) -export TARGET_ROOT=/data/projects -export TARGET_ANT_HOME=/usr/share/ant - -echo ANDROID_HOME $ANDROID_HOME -echo NDK_ROOT $NDK_ROOT - -if [ -z "$NDK_ROOT" ] ; then - # - # Generic android-ndk - # - if [ -e /usr/local/android-ndk ] ; then - NDK_ROOT=/usr/local/android-ndk - elif [ -e /opt-linux-x86/android-ndk ] ; then - NDK_ROOT=/opt-linux-x86/android-ndk - elif [ -e /opt/android-ndk ] ; then - NDK_ROOT=/opt/android-ndk - # - # Specific android-ndk-r7b - # - elif [ -e /usr/local/android-ndk-r7b ] ; then - NDK_ROOT=/usr/local/android-ndk-r7b - elif [ -e /opt-linux-x86/android-ndk-r7b ] ; then - NDK_ROOT=/opt-linux-x86/android-ndk-r7b - elif [ -e /opt/android-ndk-r7b ] ; then - NDK_ROOT=/opt/android-ndk-r7b - else - echo NDK_ROOT is not specified and does not exist in default locations - exit 1 - fi -elif [ ! -e $NDK_ROOT ] ; then - echo NDK_ROOT $NDK_ROOT does not exist - exit 1 -fi -export NDK_ROOT - -if [ -z "$ANDROID_HOME" ] ; then - if [ -e /usr/local/android-sdk-linux_x86 ] ; then - ANDROID_HOME=/usr/local/android-sdk-linux_x86 - elif [ -e /opt-linux-x86/android-sdk-linux_x86 ] ; then - ANDROID_HOME=/opt-linux-x86/android-sdk-linux_x86 - elif [ -e /opt/android-sdk-linux_x86 ] ; then - ANDROID_HOME=/opt/android-sdk-linux_x86 - else - echo ANDROID_HOME is not specified and does not exist in default locations - exit 1 - fi -elif [ ! -e $ANDROID_HOME ] ; then - echo ANDROID_HOME $ANDROID_HOME does not exist - exit 1 -fi -export ANDROID_HOME - -export ANDROID_VERSION=9 -export SOURCE_LEVEL=1.6 -export TARGET_LEVEL=1.6 -export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar - -export GCC_VERSION=4.4.3 -HOST_ARCH=linux-x86 -export TARGET_TRIPLE=arm-linux-androideabi - -export NDK_TOOLCHAIN_ROOT=$NDK_ROOT/toolchains/${TARGET_TRIPLE}-${GCC_VERSION}/prebuilt/${HOST_ARCH} -export TARGET_PLATFORM_ROOT=${NDK_ROOT}/platforms/android-${ANDROID_VERSION}/arch-arm - -# Need to add toolchain bins to the PATH. -export PATH="$NDK_TOOLCHAIN_ROOT/$TARGET_TRIPLE/bin:$ANDROID_HOME/platform-tools:$ANDROID_HOME/build-tools/17.0.0:$PATH" - -export GLUEGEN_CPPTASKS_FILE=`pwd`/../gluegen/make/lib/gluegen-cpptasks-android-armv6.xml - -#export JUNIT_DISABLED="true" -#export JUNIT_RUN_ARG0="-Dnewt.test.Screen.disableScreenMode" - -#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" -export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" - -# BUILD_ARCHIVE=true \ -ant \ - -Drootrel.build=build-android-armv6 \ - $* 2>&1 | tee -a make.jocl.all.android-armv6-cross.log - diff --git a/scripts/make.jocl.all.linux-armv6-cross.sh b/scripts/make.jocl.all.linux-armv6-cross.sh deleted file mode 100755 index 97f3c1f9..00000000 --- a/scripts/make.jocl.all.linux-armv6-cross.sh +++ /dev/null @@ -1,52 +0,0 @@ -#! /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 - -PATH=`pwd`/../gluegen/make/lib/toolchain/armsf-linux-gnueabi/bin:$PATH -export PATH - -# -Dc.compiler.debug=true -# -Dgluegen.cpptasks.detected.os=true \ -# -DisUnix=true \ -# -DisLinux=true \ -# -DisLinuxARMv7=true \ -# -DisX11=false \ - -export NODE_LABEL=. - -export HOST_UID=jogamp -export HOST_IP=jogamp02 -export HOST_RSYNC_ROOT=PROJECTS/JOGL - -export TARGET_UID=jogamp -export TARGET_IP=panda02 -#export TARGET_IP=jautab02 -export TARGET_ROOT=/home/jogamp/projects-cross -export TARGET_ANT_HOME=/usr/share/ant - -export TARGET_PLATFORM_LIBS=/opt-linux-armv6-eabi/lib -export TARGET_JAVA_LIBS=/opt-linux-armv6-eabi/jre/lib/arm - -export GLUEGEN_CPPTASKS_FILE="../gluegen/make/lib/gluegen-cpptasks-linux-armv6.xml" - -#export JUNIT_DISABLED="true" -#export JUNIT_RUN_ARG0="-Dnewt.test.Screen.disableScreenMode" - -export SOURCE_LEVEL=1.6 -export TARGET_LEVEL=1.6 -export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar - -#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" -export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" - -ant \ - -Drootrel.build=build-linux-armv6 \ - $* 2>&1 | tee make.jocl.all.linux-armv6-cross.log - - - - diff --git a/scripts/make.jocl.all.linux-armv6hf-cross.sh b/scripts/make.jocl.all.linux-armv6hf-cross.sh deleted file mode 100755 index 36343d27..00000000 --- a/scripts/make.jocl.all.linux-armv6hf-cross.sh +++ /dev/null @@ -1,52 +0,0 @@ -#! /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 - -PATH=`pwd`/../gluegen/make/lib/toolchain/armhf-linux-gnueabi/bin:$PATH -export PATH - -# -Dc.compiler.debug=true -# -Dgluegen.cpptasks.detected.os=true \ -# -DisUnix=true \ -# -DisLinux=true \ -# -DisLinuxARMv7=true \ -# -DisX11=false \ - -export NODE_LABEL=. - -export HOST_UID=jogamp -export HOST_IP=jogamp02 -export HOST_RSYNC_ROOT=PROJECTS/JOGL - -export TARGET_UID=jogamp -export TARGET_IP=panda02 -#export TARGET_IP=jautab02 -export TARGET_ROOT=/home/jogamp/projects-cross -export TARGET_ANT_HOME=/usr/share/ant - -export TARGET_PLATFORM_LIBS=/opt-linux-armv6-armhf/lib -export TARGET_JAVA_LIBS=/opt-linux-armv6-armhf/jre/lib/arm - -export GLUEGEN_CPPTASKS_FILE="../gluegen/make/lib/gluegen-cpptasks-linux-armv6hf.xml" - -#export JUNIT_DISABLED="true" -#export JUNIT_RUN_ARG0="-Dnewt.test.Screen.disableScreenMode" - -export SOURCE_LEVEL=1.6 -export TARGET_LEVEL=1.6 -export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar - -#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" -export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" - -ant \ - -Drootrel.build=build-linux-armv6hf \ - $* 2>&1 | tee make.jocl.all.linux-armv6hf-cross.log - - - - diff --git a/scripts/make.jocl.all.linux-x86-clang.sh b/scripts/make.jocl.all.linux-x86-clang.sh deleted file mode 100644 index ca9c8abc..00000000 --- a/scripts/make.jocl.all.linux-x86-clang.sh +++ /dev/null @@ -1,21 +0,0 @@ -#! /bin/sh - -SDIR=`dirname $0` - -if [ -e $SDIR/../../gluegen/make/scripts/setenv-build-jogl-x86.sh ] ; then - . $SDIR/../../gluegen/make/scripts/setenv-build-jogl-x86.sh -fi - -export SOURCE_LEVEL=1.6 -export TARGET_LEVEL=1.6 -export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar - -export GLUEGEN_PROPERTIES_FILE="../gluegen/make/lib/gluegen-clang.properties" -# or -Dgcc.compat.compiler=clang - -#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" -export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" - -ant \ - -Drootrel.build=build-x86-clang \ - $* 2>&1 | tee make.jocl.all.linux-x86-clang.log diff --git a/scripts/make.jocl.all.linux-x86.sh b/scripts/make.jocl.all.linux-x86.sh deleted file mode 100644 index 04494b21..00000000 --- a/scripts/make.jocl.all.linux-x86.sh +++ /dev/null @@ -1,18 +0,0 @@ -#! /bin/sh - -SDIR=`dirname $0` - -if [ -e $SDIR/../../gluegen/make/scripts/setenv-build-jogl-x86.sh ] ; then - . $SDIR/../../gluegen/make/scripts/setenv-build-jogl-x86.sh -fi - -export SOURCE_LEVEL=1.6 -export TARGET_LEVEL=1.6 -export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar - -#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" -export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" - -ant \ - -Drootrel.build=build-x86 \ - $* 2>&1 | tee make.jocl.all.linux-x86.log diff --git a/scripts/make.jocl.all.linux-x86_64-clang.sh b/scripts/make.jocl.all.linux-x86_64-clang.sh deleted file mode 100644 index 1d2a2a05..00000000 --- a/scripts/make.jocl.all.linux-x86_64-clang.sh +++ /dev/null @@ -1,24 +0,0 @@ -#! /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 - -# -Dbuild.archiveon=true \ - -export SOURCE_LEVEL=1.6 -export TARGET_LEVEL=1.6 -export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar - -export GLUEGEN_PROPERTIES_FILE="../gluegen/make/lib/gluegen-clang.properties" -# or -Dgcc.compat.compiler=clang - -#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" -export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" - -BUILD_ARCHIVE=true \ -ant \ - -Drootrel.build=build-x86_64-clang \ - $* 2>&1 | tee make.jocl.all.linux-x86_64-clang.log diff --git a/scripts/make.jocl.all.linux-x86_64.sh b/scripts/make.jocl.all.linux-x86_64.sh deleted file mode 100644 index 8e508684..00000000 --- a/scripts/make.jocl.all.linux-x86_64.sh +++ /dev/null @@ -1,21 +0,0 @@ -#! /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 - -# -Dbuild.archiveon=true \ - -export SOURCE_LEVEL=1.6 -export TARGET_LEVEL=1.6 -export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar - -#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" -export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" - -BUILD_ARCHIVE=true \ -ant \ - -Drootrel.build=build-x86_64 \ - $* 2>&1 | tee make.jocl.all.linux-x86_64.log diff --git a/scripts/make.jocl.all.macosx-clang.sh b/scripts/make.jocl.all.macosx-clang.sh deleted file mode 100755 index fc16ed15..00000000 --- a/scripts/make.jocl.all.macosx-clang.sh +++ /dev/null @@ -1,25 +0,0 @@ -#! /bin/sh - -if [ -e /opt-share/etc/profile.ant ] ; then - . /opt-share/etc/profile.ant -fi - -JAVA_HOME=`/usr/libexec/java_home -version 1.7` -PATH=$JAVA_HOME/bin:$PATH -export JAVA_HOME PATH - -# -Dc.compiler.debug=true - -export SOURCE_LEVEL=1.6 -export TARGET_LEVEL=1.6 -export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar - -export GLUEGEN_PROPERTIES_FILE="../gluegen/make/lib/gluegen-xcode_clang.properties" -# or -Dgcc.compat.compiler=xcode.clang - -#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" -export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" - -ant \ - -Drootrel.build=build-macosx \ - $* 2>&1 | tee make.joal.all.macosx.log diff --git a/scripts/make.jocl.all.macosx.sh b/scripts/make.jocl.all.macosx.sh deleted file mode 100644 index 20f65b92..00000000 --- a/scripts/make.jocl.all.macosx.sh +++ /dev/null @@ -1,27 +0,0 @@ -#! /bin/sh - -SDIR=`dirname $0` - -if [ -e /opt-share/etc/profile.ant ] ; then - . /opt-share/etc/profile.ant -fi - -JAVA_HOME=`/usr/libexec/java_home -version 1.7` -PATH=$JAVA_HOME/bin:$PATH -export JAVA_HOME PATH - -# -Dc.compiler.debug=true - -export SOURCE_LEVEL=1.6 -export TARGET_LEVEL=1.6 -export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar - -export GLUEGEN_PROPERTIES_FILE="../../gluegen/make/lib/gluegen-clang.properties" -# or -Dgcc.compat.compiler=clang - -#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" -export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" - -ant \ - -Drootrel.build=build-macosx \ - $* 2>&1 | tee make.jocl.all.macosx.log diff --git a/scripts/make.jocl.all.sh b/scripts/make.jocl.all.sh deleted file mode 100755 index a137cea5..00000000 --- a/scripts/make.jocl.all.sh +++ /dev/null @@ -1,9 +0,0 @@ -#! /bin/sh - -SDIR=`dirname $0` - -$SDIR/make.jocl.all.linux-armv6-cross.sh \ -&& $SDIR/make.jocl.all.linux-armv6hf-cross.sh \ -&& $SDIR/make.jocl.all.linux-x86_64.sh \ -&& $SDIR/make.jocl.all.linux-x86.sh \ -&& $SDIR/make.jocl.all.android-armv6-cross.sh \ diff --git a/scripts/make.jocl.all.solaris-x86.sh b/scripts/make.jocl.all.solaris-x86.sh deleted file mode 100644 index a59f756b..00000000 --- a/scripts/make.jocl.all.solaris-x86.sh +++ /dev/null @@ -1,18 +0,0 @@ -#! /bin/sh - -SDIR=`dirname $0` - -if [ -e $SDIR/../../gluegen/make/scripts/setenv-build-jogl-x86.sh ] ; then - . $SDIR/../../gluegen/make/scripts/setenv-build-jogl-x86.sh -fi - -export SOURCE_LEVEL=1.6 -export TARGET_LEVEL=1.6 -export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar - -#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" -export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" - -ant \ - -Drootrel.build=build-solaris-x86_64 \ - $* 2>&1 | tee make.jocl.all.solaris-x86_64.log diff --git a/scripts/make.jocl.all.solaris-x86_64.sh b/scripts/make.jocl.all.solaris-x86_64.sh deleted file mode 100644 index 2a207ab5..00000000 --- a/scripts/make.jocl.all.solaris-x86_64.sh +++ /dev/null @@ -1,18 +0,0 @@ -#! /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 - -export SOURCE_LEVEL=1.6 -export TARGET_LEVEL=1.6 -export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar - -#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" -export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" - -ant \ - -Drootrel.build=build-solaris-x86_64 \ - $* 2>&1 | tee make.jocl.all.solaris-x86_64.log diff --git a/scripts/make.jocl.all.win32.bat b/scripts/make.jocl.all.win32.bat deleted file mode 100644 index bb4418bd..00000000 --- a/scripts/make.jocl.all.win32.bat +++ /dev/null @@ -1,19 +0,0 @@ -set THISDIR="C:\JOGL"
-
-set J2RE_HOME=c:\jre1.7.0_45_x32
-set JAVA_HOME=c:\jdk1.7.0_45_x32
-set ANT_PATH=C:\apache-ant-1.8.0
-
-set PATH=%JAVA_HOME%\bin;%ANT_PATH%\bin;c:\mingw\bin;%PATH%
-
-set LIB_GEN=%THISDIR%\lib
-set CLASSPATH=.;%THISDIR%\build-win32\classes
-
-set SOURCE_LEVEL=1.6
-set TARGET_LEVEL=1.6
-set TARGET_RT_JAR=c:\jre1.6.0_30\lib\rt.jar
-
-REM set JOGAMP_JAR_CODEBASE=Codebase: *.jogamp.org
-set JOGAMP_JAR_CODEBASE=Codebase: *.goethel.localnet
-
-ant -Drootrel.build=build-win32 %1 %2 %3 %4 %5 %6 %7 %8 %9 > make.jocl.all.win32.log 2>&1
diff --git a/scripts/make.jocl.all.win64.bat b/scripts/make.jocl.all.win64.bat deleted file mode 100644 index a174e710..00000000 --- a/scripts/make.jocl.all.win64.bat +++ /dev/null @@ -1,19 +0,0 @@ -set THISDIR="C:\JOGL"
-
-set J2RE_HOME=c:\jre1.7.0_45_x64
-set JAVA_HOME=c:\jdk1.7.0_45_x64
-set ANT_PATH=C:\apache-ant-1.8.0
-
-set PATH=%JAVA_HOME%\bin;%ANT_PATH%\bin;c:\mingw64\bin;c:\mingw\bin;%PATH%
-
-set LIB_GEN=%THISDIR%\lib
-set CLASSPATH=.;%THISDIR%\build-win64\classes
-
-set SOURCE_LEVEL=1.6
-set TARGET_LEVEL=1.6
-set TARGET_RT_JAR=c:\jre1.6.0_30\lib\rt.jar
-
-REM set JOGAMP_JAR_CODEBASE=Codebase: *.jogamp.org
-set JOGAMP_JAR_CODEBASE=Codebase: *.goethel.localnet
-
-ant -Drootrel.build=build-win64 %1 %2 %3 %4 %5 %6 %7 %8 %9 > make.jocl.all.win64.log 2>&1
|