guile/autogen.sh

31 lines
567 B
Bash
Raw Normal View History

#!/bin/sh
2007-07-17 08:39:35 +00:00
# Usage: sh -x ./autogen.sh
set -e
[ -f GUILE-VERSION ] || {
echo "autogen.sh: run this command only at the top of guile-core."
exit 1
}
######################################################################
### announce build tool versions
echo ""
autoconf --version
echo ""
automake --version
echo ""
libtoolize --version
echo ""
${M4:-m4} --version
echo ""
flex --version
echo ""
######################################################################
### update infrastructure
autoreconf -i --force --verbose
echo "Now run configure and make."