fix immediate linkage, some other fixes to allow vm/ to compile
[bpt/guile.git] / autogen.sh
CommitLineData
a98cef7e
KN
1#!/bin/sh
2
a4908d56
KN
3if test -f "`aclocal --print-ac-dir`/guile.m4"; then
4 aclocal
5else
6 if test -f "`guile-config info datadir`/aclocal/guile.m4"; then
7 aclocal -I "`guile-config info datadir`/aclocal"
8 else
9 echo "Cannot find guile.m4";
10 exit;
11 fi
12fi
13
e274f1c2
LC
14libtoolize && \
15autoheader && \
16automake -a && \
a98cef7e 17autoconf