blob: 09675952151f60117c87395a1576be6629d65d06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# upd
# update hpi library objects to public share
#
# todir=/mnt/pub/panich/hpi/hpiutil
todir=/mnt/pub/cress/hpi/hpiutil
hdir=/root/hpi
cdir=`pwd`
if [ $# -ge 1 ]
then
OS=$1
else
OS=el3
fi
mkdir -p $todir/obj/$OS
# cd $SAHPI_HOME
cd $hdir
cp bin/SpiLibd $todir/obj/$OS
cp lib/*.so* $todir/obj/$OS
if [ -f lib/Server ]
then
cp lib/Server $todir/obj/$OS
fi
cd $cdir
|