1999-10-05 19:07:40 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
1999-10-05 23:07:04 +00:00
|
|
|
[ -f GUILE-VERSION ] || {
|
|
|
|
|
echo "autogen.sh: run this command only at the top of a Guile source tree."
|
|
|
|
|
exit 1
|
|
|
|
|
}
|
|
|
|
|
|
2000-06-01 15:11:14 +00:00
|
|
|
./guile-aclocal.sh
|
|
|
|
|
|
2001-07-12 18:34:39 +00:00
|
|
|
libtoolize --copy --force --automake --ltdl
|
1999-10-05 22:34:35 +00:00
|
|
|
autoheader
|
1999-10-05 23:07:04 +00:00
|
|
|
autoconf
|
2000-01-25 20:35:41 +00:00
|
|
|
automake --add-missing
|
1999-10-05 23:07:04 +00:00
|
|
|
|
2000-01-11 21:50:10 +00:00
|
|
|
( echo "guile-readline..."; cd guile-readline; ./autogen.sh )
|
2001-06-25 15:07:20 +00:00
|
|
|
|
|
|
|
|
echo "Now run configure and make."
|
2001-06-25 22:24:40 +00:00
|
|
|
echo "You must pass the \`--enable-maintainer-mode' option to configure."
|