]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RALICE/scripts/hpcclib
Buffer Size can be defined
[u/mrichter/AliRoot.git] / RALICE / scripts / hpcclib
1 #!/bin/sh
2 ### Shell script to create a ROOT loadable HP-CC shared lib out of .cxx source code
3 ###
4 ### NvE 28-jun-1999 UU-SAP Utrecht
5 #
6 ### The option strings for HP-CC shared lib compilation and linking ***
7 ### For the HP-CC ROOT loadable shared lib the strict requirements are ***
8 ### dropped to avoid many warnings from the rootcint generated code ***
9
10 hpcomp="-c -s -z +z +a1 +w +DAportable -I$ROOTSYS/include"
11 hproot="-c -s -z +z +a1 +DAportable -I$ROOTSYS/include"
12 hplink="-L$ROOTSYS/lib/ -l*.sl -lm"
13
14 rootcint zzzralicedict.cxx -c RALICEHeaders.h RALICELinkDef.h
15
16 CC $hproot *.cxx   
17
18 CC -b -o ralice.sl *.o
19
20 rm zzzralicedict.*
21 rm *.o
22
23 echo '*** hpcclib done. Result in ralice.sl'