blob: d6751b6a1ca124df9b9b499c52e5e7a88c9ba877 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#! /bin/sh
SDIR=`dirname $0`
if [ -e $SDIR/../../../gluegen/make/scripts/setenv-build-jogamp-x86_64.sh ] ; then
. $SDIR/../../../gluegen/make/scripts/setenv-build-jogamp-x86_64.sh
fi
ant -v \
-Drootrel.build=build-x86_64 \
javadoc $* 2>&1 | tee make.jogl.doc.x86_64.log
|