* RELEASE: update release building instructions.
[bpt/guile.git] / autogen.sh
CommitLineData
5d94b2fe
JB
1#!/bin/sh
2
0b49b6ae
JB
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
65545721
ML
8./guile-aclocal.sh
9
065509a5 10libtoolize --copy --force --automake --ltdl
ee31ced2 11autoheader
0b49b6ae 12autoconf
3925e507 13automake --add-missing
0b49b6ae 14
cebb2d1f
MV
15# Make sure that libltdl uses the same autoconf version as the rest.
16#
17( echo "libltdl..."; cd libltdl; autoconf )
18
951afd33 19( echo "guile-readline..."; cd guile-readline; ./autogen.sh )
9e74987f
MV
20
21echo "Now run configure and make."
f2ae4555 22echo "You must pass the \`--enable-maintainer-mode' option to configure."