]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RALICE/scripts/hpcclib
Subdirectory "scripts" created in RALICE.
[u/mrichter/AliRoot.git] / RALICE / scripts / hpcclib
CommitLineData
5486ca8d 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
10hpcomp="-c -s -z +z +a1 +w +DAportable -I$ROOTSYS/include"
11hproot="-c -s -z +z +a1 +DAportable -I$ROOTSYS/include"
12hplink="-L$ROOTSYS/lib/ -l*.sl -lm"
13
14rootcint zzzralicedict.cxx -c RALICEHeaders.h RALICELinkDef.h
15
16CC $hproot *.cxx
17
18CC -b -o ralice.sl *.o
19
20rm zzzralicedict.*
21rm *.o
22
23echo '*** hpcclib done. Result in ralice.sl'