Files
libdwarf-code/BLDLIBDWARF
David Anderson 78c39153e0 These no longer reference dwarfdump2.
BLD
BLDLIBDWARF
BLDTESTDIR
CLEANUP
2015-01-13 17:24:27 -08:00

30 lines
321 B
Bash
Executable File

#!/bin/sh
#
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