mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 11:50:28 +02:00
13 lines
206 B
Bash
Executable file
13 lines
206 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
|
|
|
|
( cd guile-readline; ./autogen.sh )
|