blob: a85f9344f886fc0314a97ae384fcab728defe799 (
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 \
-Djogl.cg=1 \
-Drootrel.build=build-macosx \
$* 2>&1 | tee make.jogl.all.macosx.log
|