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/scripts/make.jogl.cdcfp.macosx.sh | |
parent | 10c26e556006b5727b0076fc2e486459a63bdf76 (diff) |
Move all scripts to it's folder
Diffstat (limited to 'make/scripts/make.jogl.cdcfp.macosx.sh')
-rw-r--r-- | make/scripts/make.jogl.cdcfp.macosx.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/make/scripts/make.jogl.cdcfp.macosx.sh b/make/scripts/make.jogl.cdcfp.macosx.sh new file mode 100644 index 000000000..d36f0bb7e --- /dev/null +++ b/make/scripts/make.jogl.cdcfp.macosx.sh @@ -0,0 +1,27 @@ +#! /bin/sh + +if [ -e /devtools/etc/profile.ant ] ; then + . /devtools/etc/profile.ant +fi + + +# -Dc.compiler.debug=true +# -Dbuild.noarchives=true + +BUILD_SUBDIR=build-cdcfp-macosx + +ant \ + -Dbuild.noarchives=true \ + -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 + |