aboutsummaryrefslogtreecommitdiffstats
path: root/make/make.jogl.cdcfp.macosx.sh
blob: d36f0bb7e7dc157e6f1fc613289766dbac6b12bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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