blob: 587c072e2f77b8739101e3fbc4ab28cc71855ed3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
[ -f readline-activator.scm ] || {
echo "autogen.sh: run this command only in the guile-readline directory."
exit 1
}
aclocal
libtoolize --copy --automake
autoconf
automake --add-missing
|