diff options
author | Sven Gothel <[email protected]> | 2010-12-13 18:45:04 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-12-13 18:45:04 +0100 |
commit | 0d8e10fc2f3e5b8cfccc8e20d08c979f75bfb0a2 (patch) | |
tree | 4435ce4375848573b912cb7d333d882debfd10a4 /make/scripts | |
parent | 5db5c574d5ea895921e60cdb768dc138685c7d5b (diff) |
Update GearsJOALApplet: Depending on joal build; incl joal snippet, remove joal/joal-demos jar files.
Diffstat (limited to 'make/scripts')
-rw-r--r-- | make/scripts/make.jogl.all.macosx.sh | 10 | ||||
-rw-r--r-- | make/scripts/make.jogl.all.win32.bat | 13 | ||||
-rw-r--r-- | make/scripts/make.jogl.all.win64.bat | 13 | ||||
-rw-r--r-- | make/scripts/make.jogl.all.x86.sh | 11 | ||||
-rw-r--r-- | make/scripts/make.jogl.all.x86_64.sh | 15 | ||||
-rw-r--r-- | make/scripts/make.jogl.cdcfp.macosx.sh | 10 | ||||
-rw-r--r-- | make/scripts/make.jogl.cdcfp.x86.sh | 10 |
7 files changed, 82 insertions, 0 deletions
diff --git a/make/scripts/make.jogl.all.macosx.sh b/make/scripts/make.jogl.all.macosx.sh new file mode 100644 index 0000000..02f8ccc --- /dev/null +++ b/make/scripts/make.jogl.all.macosx.sh @@ -0,0 +1,10 @@ +#! /bin/sh + +. /devtools/etc/profile.ant + +# -Dc.compiler.debug=true + +ant -v \ + -Djogl.cg=1 \ + -Drootrel.build=build-macosx \ + $* 2>&1 | tee make.jogl.all.macosx.log diff --git a/make/scripts/make.jogl.all.win32.bat b/make/scripts/make.jogl.all.win32.bat new file mode 100644 index 0000000..ba37559 --- /dev/null +++ b/make/scripts/make.jogl.all.win32.bat @@ -0,0 +1,13 @@ +set THISDIR="C:\JOGL"
+
+set J2RE_HOME=c:\jre1.6.0_22_x32
+set JAVA_HOME=c:\jdk1.6.0_22_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
+REM -Djogl.cg=1
+
+ant -Djogl.cg=1 -Drootrel.build=build-win32 %1 %2 %3 %4 %5 %6 %7 %8 %9 > make.jogl.all.win32.log 2>&1
diff --git a/make/scripts/make.jogl.all.win64.bat b/make/scripts/make.jogl.all.win64.bat new file mode 100644 index 0000000..3ffc828 --- /dev/null +++ b/make/scripts/make.jogl.all.win64.bat @@ -0,0 +1,13 @@ +set THISDIR="C:\JOGL"
+
+set J2RE_HOME=c:\jre1.6.0_22_x64
+set JAVA_HOME=c:\jdk1.6.0_22_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
+REM -Djogl.cg=1
+
+ant -Djogl.cg=1 -Drootrel.build=build-win64 %1 %2 %3 %4 %5 %6 %7 %8 %9 > make.jogl.all.win64.log 2>&1
diff --git a/make/scripts/make.jogl.all.x86.sh b/make/scripts/make.jogl.all.x86.sh new file mode 100644 index 0000000..41fa16b --- /dev/null +++ b/make/scripts/make.jogl.all.x86.sh @@ -0,0 +1,11 @@ +#! /bin/sh + +. ../../setenv-build-jogl-x86.sh + +# -Dc.compiler.debug=true + +ant \ + -Djogl.cg=1 \ + -Duser.swt.jar=$HOME/.java/swt-3.6-gtk-linux-x86.jar \ + -Drootrel.build=build-x86 \ + $* 2>&1 | tee make.jogl.all.x86.log diff --git a/make/scripts/make.jogl.all.x86_64.sh b/make/scripts/make.jogl.all.x86_64.sh new file mode 100644 index 0000000..2298142 --- /dev/null +++ b/make/scripts/make.jogl.all.x86_64.sh @@ -0,0 +1,15 @@ +#! /bin/sh + +. ../../setenv-build-jogl-x86_64.sh + +# -Dc.compiler.debug=true +# -Djogl.cg=1 \ +# -Djogl.redbook=true \ +# -DskipSourceZIP=true + +ant \ + -DskipSourceZIP=true \ + -Djogl.cg=1 \ + -Duser.swt.jar=$HOME/.java/swt.jar \ + -Drootrel.build=build-x86_64 \ + $* 2>&1 | tee make.jogl.all.x86_64.log diff --git a/make/scripts/make.jogl.cdcfp.macosx.sh b/make/scripts/make.jogl.cdcfp.macosx.sh new file mode 100644 index 0000000..8677f88 --- /dev/null +++ b/make/scripts/make.jogl.cdcfp.macosx.sh @@ -0,0 +1,10 @@ +#! /bin/sh + +. /devtools/etc/profile.ant + +# -Dc.compiler.debug=true + +ant -v \ + -Djogl.es=1 \ + -Drootrel.build=build-cdcfp-macosx \ + $* 2>&1 | tee make.jogl.cdcfp.macosx.log diff --git a/make/scripts/make.jogl.cdcfp.x86.sh b/make/scripts/make.jogl.cdcfp.x86.sh new file mode 100644 index 0000000..60b7f4a --- /dev/null +++ b/make/scripts/make.jogl.cdcfp.x86.sh @@ -0,0 +1,10 @@ +#! /bin/sh + +. ../../setenv-build-jogl-x86.sh + +# -Dc.compiler.debug=true + +ant \ + -Djogl.es=1 \ + -Drootrel.build=build-cdcfp-x86 \ + $* 2>&1 | tee make.jogl.cdcfp.x86.log |