1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-12 00:30:20 +02:00
guile/autogen.sh
2002-01-25 19:48:12 +00:00

17 lines
298 B
Bash
Executable file

#!/bin/sh
[ -f GUILE-VERSION ] || {
echo "autogen.sh: run this command only at the top of a Guile source tree."
exit 1
}
set -ex
./guile-aclocal.sh
libtoolize --copy --automake --ltdl
autoheader
autoconf
automake --add-missing
( echo "guile-readline..."; cd guile-readline; ./autogen.sh )