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

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

./guile-aclocal.sh

libtoolize --copy --automake --ltdl
autoheader
autoconf
automake --add-missing

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