diff options
author | Sylvestre Ledru <[email protected]> | 2011-02-22 17:13:21 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-02-25 06:05:17 +0100 |
commit | 079572c5d5999c410a827c7d178a19f88db18c9a (patch) | |
tree | fa7080783e0de6c85e95cba0e8b367ec08602636 /make | |
parent | 1f4171ef3019ce8de945129d74363def12e128a3 (diff) |
Remove reference to the deprecated option noCDC
Diffstat (limited to 'make')
-rwxr-xr-x | make/scripts/make.jogl.cdcfp.linux-x86.sh | 36 | ||||
-rwxr-xr-x | make/scripts/make.jogl.cdcfp.macosx.sh | 25 |
2 files changed, 0 insertions, 61 deletions
diff --git a/make/scripts/make.jogl.cdcfp.linux-x86.sh b/make/scripts/make.jogl.cdcfp.linux-x86.sh deleted file mode 100755 index b26926804..000000000 --- a/make/scripts/make.jogl.cdcfp.linux-x86.sh +++ /dev/null @@ -1,36 +0,0 @@ -#! /bin/sh - -if [ -e ../../setenv-build-jogl-x86.sh ] ; then - . ../../setenv-build-jogl-x86.sh -fi - -# -Dc.compiler.debug=true -# -# -Djavacdebug="false" \ -# -Djavacdebuglevel="none" \ -# -# -Djava.generate.skip=true \ - -BUILD_SUBDIR=build-cdcfp-x86 - -ant -v \ - -Dgluegen-cpptasks.file=`pwd`/../../gluegen/make/lib/gluegen-cpptasks-linux-32bit.xml \ - -Drootrel.build=$BUILD_SUBDIR \ - -Dsetup.cdcfp=true \ - -Dgluegen.cpptasks.detected.os=true \ - -DisUnix=true \ - -DisLinux=true \ - -DisLinuxX86=true \ - -DisX11=true \ - -DuseOpenMAX=true \ - $* 2>&1 | tee make.jogl.cdcfp.linux-x86.log - -rm -rf ../$BUILD_SUBDIR/lib -mkdir -p ../$BUILD_SUBDIR/lib -for i in `find ../$BUILD_SUBDIR/ -name \*so` ; do - cp -v $i ../$BUILD_SUBDIR/lib/$(basename $i .so).so -done -for i in `find ../../gluegen/$BUILD_SUBDIR/ -name \*so` ; do - cp -v $i ../$BUILD_SUBDIR/lib/$(basename $i .so).so -done - diff --git a/make/scripts/make.jogl.cdcfp.macosx.sh b/make/scripts/make.jogl.cdcfp.macosx.sh deleted file mode 100755 index 6875a4d2c..000000000 --- a/make/scripts/make.jogl.cdcfp.macosx.sh +++ /dev/null @@ -1,25 +0,0 @@ -#! /bin/sh - -if [ -e /opt-share/etc/profile.ant ] ; then - . /opt-share/etc/profile.ant -fi - - -# -Dc.compiler.debug=true - -BUILD_SUBDIR=build-cdcfp-macosx - -ant \ - -Dsetup.cdcfp=true \ - -Drootrel.build=$BUILD_SUBDIR \ - $* 2>&1 | tee make.jogl.cdcfp.macosx.log - -rm -rf ../$BUILD_SUBDIR/lib -mkdir -p ../$BUILD_SUBDIR/lib -for i in `find ../$BUILD_SUBDIR/ -name \*jnilib` ; do - cp -v $i ../$BUILD_SUBDIR/lib/$(basename $i .jnilib).so -done -for i in `find ../../gluegen/$BUILD_SUBDIR/ -name \*jnilib` ; do - cp -v $i ../$BUILD_SUBDIR/lib/$(basename $i .jnilib).so -done - |