summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/make.jocl.all.linux-x86.sh9
-rw-r--r--scripts/make.jocl.all.win64.bat12
2 files changed, 21 insertions, 0 deletions
diff --git a/scripts/make.jocl.all.linux-x86.sh b/scripts/make.jocl.all.linux-x86.sh
new file mode 100644
index 00000000..9ae8b770
--- /dev/null
+++ b/scripts/make.jocl.all.linux-x86.sh
@@ -0,0 +1,9 @@
+#! /bin/sh
+
+if [ -e ../setenv-build-jogl-x86.sh ] ; then
+ . ../setenv-build-jogl-x86.sh
+fi
+
+ant \
+ -Drootrel.build=build-x86 \
+ $* 2>&1 | tee make.jocl.all.linux-x86.log
diff --git a/scripts/make.jocl.all.win64.bat b/scripts/make.jocl.all.win64.bat
new file mode 100644
index 00000000..7fd32e96
--- /dev/null
+++ b/scripts/make.jocl.all.win64.bat
@@ -0,0 +1,12 @@
+set THISDIR="C:\JOGL"
+
+set J2RE_HOME=c:\jre1.6.0_20_x64
+set JAVA_HOME=c:\jdk1.6.0_20_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
+
+ant -Drootrel.build=build-win64 %1 %2 %3 %4 %5 %6 %7 %8 %9 > make.jocl.all.win64.log 2>&1