blob: f9f79500ecbd5f2ce2893624957f498b807d10b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
if [ -e /devtools/etc/profile.ant ] ; then
. /devtools/etc/profile.ant
fi
# -Dc.compiler.debug=true
# -Dbuild.noarchives=true
ant \
-Dbuild.noarchives=true \
-Dsetup.cdcfp=true \
-Drootrel.build=build-cdcfp-macosx \
$* 2>&1 | tee make.jogl.cdcfp.macosx.log
|