summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 78c60dbc3dc0eac3e924c63944f70bca5dc108d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

[ -f GUILE-VERSION ] || {
  echo "autogen.sh: run this command only at the top of a Guile source tree."
  exit 1
}

aclocal -I .
libtoolize --copy --automake --ltdl
autoheader
autoconf
automake --add-missing

( echo "guile-readline..."; cd guile-readline; ./autogen.sh )