blob: b35491b4fd7d32ac8b46476369a5dc907a445b0f [file] [log] [blame]
#!/bin/sh
set -e
#
# usage:
#
# banner <target name>
#
banner() {
echo
TG=`echo $1 | sed -e "s,/.*/,,g"`
LINE=`echo $TG |sed -e "s/./-/g"`
echo $LINE
echo $TG
echo $LINE
echo
}
banner "autoreconf"
mkdir -p config/autoconf config/m4
autoreconf --force --install --verbose -Wall || exit $?
banner "Finished"