blob: 58690c7d053dc5bb7b9b8fef4ff7b3e48c5d2bab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/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 )
|