Recurse into libltdl directory and invoke autoconf there.
[bpt/guile.git] / autogen.sh
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
10 libtoolize --copy --force --automake --ltdl
11 autoheader
12 autoconf
13 automake --add-missing
14
15 # Make sure that libltdl uses the same autoconf version as the rest.
16 #
17 ( echo "libltdl..."; cd libltdl; autoconf )
18
19 ( echo "guile-readline..."; cd guile-readline; ./autogen.sh )
20
21 echo "Now run configure and make."
22 echo "You must pass the \`--enable-maintainer-mode' option to configure."