* autogen.sh: Call libtoolize. Pass --add-missing option to
[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
8aclocal -I .
3925e507 9libtoolize --copy --automake --ltdl
ee31ced2 10autoheader
0b49b6ae 11autoconf
3925e507 12automake --add-missing
0b49b6ae 13
951afd33 14( echo "guile-readline..."; cd guile-readline; ./autogen.sh )