]> git.uio.no Git - u/mrichter/AliRoot.git/blob - test/vmctest/scripts/build_cuts.sh
Update master to aliroot
[u/mrichter/AliRoot.git] / test / vmctest / scripts / build_cuts.sh
1 #!/bin/sh
2 # $Id$
3
4 # Script for installation of cuts.cxx program
5
6 CURDIR=`pwd`
7
8 echo "... Installing cuts program"
9
10 g++ -I$ROOTSYS/include \
11     `root-config --glibs` -lGeomPainter -lGeom cuts.cxx \
12     -o cuts2
13
14 echo "... Installing cuts program finished"
15
16 cd $CURDIR