blob: 7ba3a839eed7e0d629ecab9e2d3a785d0af4133f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
THISDIR=`pwd`
GLUEGEN=$THISDIR/../../../gluegen
JOGL=$THISDIR/../../../jogl
DEST=jogamp01/lib/
bdir=build-x86_64
cp -av $GLUEGEN/$bdir/gluegen-rt.jar $DEST
cp -av $GLUEGEN/$bdir/gluegen-rt-natives-linux-amd64.jar $DEST
cp -av $JOGL/$bdir/jar/jogl-all.jar $DEST
cp -av $JOGL/$bdir/jar/jogl-all-natives-linux-amd64.jar $DEST
rm -f jogamp01/build/*
cd jogamp01
ant
cd ..
|