blob: 02bba0a341e4a466205983df6f80a6397895f072 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
[ -f GUILE-VERSION ] || {
echo "autogen.sh: run this command only at the top of a Guile source tree."
exit 1
}
./guile-aclocal.sh
libtoolize --copy --automake --ltdl
autoheader
autoconf
automake --add-missing
flex -t libguile/c-tokenize.lex > libguile/c-tokenize.c
( echo "guile-readline..."; cd guile-readline; ./autogen.sh )
|