1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00
guile/autogen.sh
Greg J. Badros 951afd33db * autogen.sh: Added messages as we run autogen in subdirectories.
* configure.in: Output libugile/guile-func-name-check script, and
chmod +x it.
2000-01-11 21:50:10 +00:00

14 lines
280 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
}
aclocal -I .
autoheader
autoconf
automake
( echo "guile-readline..."; cd guile-readline; ./autogen.sh )
( echo "libltdl..."; cd libltdl; ./autogen.sh )