diff options
author | Sven Gothel <[email protected]> | 2010-05-04 02:43:09 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-05-04 02:43:09 +0200 |
commit | 63916148e837942c9ec996320bda805e80d7e06e (patch) | |
tree | e45c041c05cf1ba33c3cd3af9fc09fdec7eb5ec8 /make/make.jogl.cdcfp.linux-x86.sh | |
parent | 10c26e556006b5727b0076fc2e486459a63bdf76 (diff) |
Move all scripts to it's folder
Diffstat (limited to 'make/make.jogl.cdcfp.linux-x86.sh')
-rw-r--r-- | make/make.jogl.cdcfp.linux-x86.sh | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/make/make.jogl.cdcfp.linux-x86.sh b/make/make.jogl.cdcfp.linux-x86.sh deleted file mode 100644 index ad80f194d..000000000 --- a/make/make.jogl.cdcfp.linux-x86.sh +++ /dev/null @@ -1,38 +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 \ -# -Dbuild.noarchives=true - -BUILD_SUBDIR=build-cdcfp-x86 - -ant -v \ - -Dgluegen-cpptasks.file=`pwd`/../../gluegen/make/lib/gluegen-cpptasks-linux-32bit.xml \ - -Dbuild.noarchives=true \ - -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 - |