1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
#!/bin/sh
# BLDLIBDWARF
l=`pwd`
echo $l
lb=`basename $l`
ld=`dirname $l`
#echo " lb: $lb"
#echo " ld: $ld"
cdtarg=.
sloc=$l/scripts
if [ x$lb = "xscripts" ]
then
#echo "ld: $ld"
ldb=`basename $ld`
#echo "ldb: $ldb"
if [ x$ldb = "xcode" ]
then
cdtarg=..
sloc=$l
else
echo "Run from */code, not $l , giving up."
exit 1
fi
cd $cdtarg
if [ $? -ne 0 ]
then
echo "cd $cdtarg failed, giving up."
exit 1
fi
else
if [ x$lb = "xcode" ]
then
cdtarg="."
else
echo "Run from */code, not $l , giving up."
exit 1
fi
# No need to cd.
fi
l=`pwd`
#echo "Now at $l"
#echo "sloc $sloc"
bldone () {
t=$1
cd $t
# The following distclean will fail on a clean directory
# Ignore the failure
make distclean
./configure
if [ $? != 0 ]
then
echo build failed
exit
fi
make
if [ $? != 0 ]
then
echo build failed
exit
fi
cd ..
}
bldone libdwarf
bldone dwarfdump
|