* autogen.sh: Added messages as we run autogen in subdirectories.
[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 aclocal -I .
9 autoheader
10 autoconf
11 automake
12
13 ( echo "guile-readline..."; cd guile-readline; ./autogen.sh )
14 ( echo "libltdl..."; cd libltdl; ./autogen.sh )