blob: 1c22efe482b1eec1a041962d2d5d61d86df216d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#! /bin/sh
if [ -e /opt-share/etc/profile.ant ] ; then
. /opt-share/etc/profile.ant
fi
# -Dc.compiler.debug=true \
# -Djavacdebug="true" \
# -Djavacdebuglevel="source,lines,vars" \
ant \
-Drootrel.build=build-macosx \
$* 2>&1 | tee make.jogl.all.macosx.log
|