summaryrefslogtreecommitdiffstats
path: root/make/scripts
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-10-22 16:31:54 +0200
committerSven Gothel <[email protected]>2011-10-22 16:31:54 +0200
commitf9aaf05984dcfabe7d3c28e6b1f650ad07c71463 (patch)
tree342048d40faff188b83d3911fdde858754fe73fb /make/scripts
parenta4471d6d8df79b32f22a8ba9f4d743b74fa124e9 (diff)
update build.xml (jogl.cg.jar location) and manual compile scripts
Diffstat (limited to 'make/scripts')
-rwxr-xr-xmake/scripts/make.jogl.all.macosx.sh4
-rwxr-xr-xmake/scripts/make.jogl.all.x86.sh10
-rwxr-xr-xmake/scripts/make.jogl.all.x86_64.sh10
-rwxr-xr-xmake/scripts/make.jogl.cdcfp.macosx.sh10
-rwxr-xr-xmake/scripts/make.jogl.cdcfp.x86.sh10
5 files changed, 19 insertions, 25 deletions
diff --git a/make/scripts/make.jogl.all.macosx.sh b/make/scripts/make.jogl.all.macosx.sh
index 02f8ccc..716e32b 100755
--- a/make/scripts/make.jogl.all.macosx.sh
+++ b/make/scripts/make.jogl.all.macosx.sh
@@ -1,10 +1,10 @@
#! /bin/sh
-. /devtools/etc/profile.ant
+SDIR=`dirname $0`
# -Dc.compiler.debug=true
+# -Djogl.cg=1 \
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.x86.sh b/make/scripts/make.jogl.all.x86.sh
index 41fa16b..004abbb 100755
--- a/make/scripts/make.jogl.all.x86.sh
+++ b/make/scripts/make.jogl.all.x86.sh
@@ -1,11 +1,17 @@
#! /bin/sh
-. ../../setenv-build-jogl-x86.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
+
+. $SDIR/../../../jogl/etc/profile.jogl JOGL_ALL $SDIR/../../../jogl/build-x86
# -Dc.compiler.debug=true
ant \
-Djogl.cg=1 \
- -Duser.swt.jar=$HOME/.java/swt-3.6-gtk-linux-x86.jar \
+ -Duser.swt.jar=$SWT_CLASSPATH \
-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
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
diff --git a/make/scripts/make.jogl.cdcfp.macosx.sh b/make/scripts/make.jogl.cdcfp.macosx.sh
deleted file mode 100755
index 8677f88..0000000
--- a/make/scripts/make.jogl.cdcfp.macosx.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#! /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
deleted file mode 100755
index 60b7f4a..0000000
--- a/make/scripts/make.jogl.cdcfp.x86.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#! /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