*** empty log message ***
[bpt/guile.git] / autogen.sh
... / ...
CommitLineData
1#!/bin/sh
2
3[ -f GUILE-VERSION ] || {
4 echo "autogen.sh: run this command only at the top of a Guile source tree."
5 exit 1
6}
7
8./guile-aclocal.sh
9
10libtoolize --copy --automake --ltdl
11autoheader
12autoconf
13automake --add-missing
14
15( echo "guile-readline..."; cd guile-readline; ./autogen.sh )
16
17echo "Now run configure and make."
18echo "You must pass the \`--enable-maintainer-mode' option to configure."