Changes from arch/CVS synchronization
[bpt/guile.git] / autogen.sh
... / ...
CommitLineData
1#!/bin/sh
2# Usage: sh -x ./autogen.sh
3
4set -e
5
6[ -f GUILE-VERSION ] || {
7 echo "autogen.sh: run this command only at the top of guile-core."
8 exit 1
9}
10
11######################################################################
12### announce build tool versions
13echo ""
14autoconf --version
15echo ""
16automake --version
17echo ""
18libtool --version
19echo ""
20${M4:-/usr/bin/m4} --version
21echo ""
22
23######################################################################
24### update infrastructure
25
26autoreconf -i --force --verbose
27
28echo "guile-readline..."
29(cd guile-readline && ./autogen.sh)
30
31echo "Now run configure and make."
32echo "You must pass the \`--enable-maintainer-mode' option to configure."