]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - RALICE/wa98/scripts/alphacxxlib.sh
11-jan-2008 NvE All files of external applications removed to facilitate
[u/mrichter/AliRoot.git] / RALICE / wa98 / scripts / alphacxxlib.sh
diff --git a/RALICE/wa98/scripts/alphacxxlib.sh b/RALICE/wa98/scripts/alphacxxlib.sh
deleted file mode 100644 (file)
index 297427c..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-### Shell script to create a ROOT loadable ALPHA-CXX shared lib out of .cxx source code
-###
-### NvE 05-jul-2000 UU-SAP Utrecht
-
-### Name of the produced shared library
-lib=rwa98.so
-
-### The option string for ALPHA-CXX shared lib compilation and linking ***
-### For the ALPHA-CXX ROOT loadable shared lib the strict requirements are ***
-### dropped to avoid many warnings from the rootcint generated code ***
-alpharoot="-x cxx -g0 -shared -w1 -I$ROOTSYS/include -I$ALIROOT/RALICE -o $lib"
-
-### Go to the directory with the source files
-cd $ALIROOT/RALICE/wa98
-
-### Create the dictionary files
-rootcint zzzrwa98dict.cxx -c -I$ALIROOT/RALICE RWA98Headers.h RWA98LinkDef.h
-
-### Compile and create the ROOT loadable shared library
-cxx $alpharoot *.cxx   
-
-rm zzzrwa98dict.*
-rm *.o
-rm so_locations
-
-### Move the created lib to the scripts directory and go there
-mv $lib scripts
-cd scripts
-
-echo ' '
-echo '*** alphacxxlib done. Result in ' $lib