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