summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 10bf34a30bc05c0c068f3e73cc9c44c0299fe5f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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 --force --automake --ltdl
autoheader
autoconf
automake --add-missing

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

echo "Now run configure and make."
echo "You must pass the \`--enable-maintainer-mode' option to configure."