blob: 680d1454744d822d39f0071fccce1fccb9c390c4 (
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-jogl-x86_64.sh ] ; then
. $SDIR/../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh
fi
ant \
-Drootrel.build=build-x86_64 \
$* 2>&1 | tee make.jocl.all.linux-x86_64.log
|