1998-11-02 Alexandre Oliva <oliva@dcc.unicamp.br>
+ * autogen: new script; run it to bootstrap libtool after checking
+ it out from CVS
+
* libtool.m4 (CFLAGS): check whether -belf is needed on SCO, as
suggested by Robert Lipe <robertl@dgii.com>
--- /dev/null
+#! /bin/sh
+
+# helps bootstrapping libtool, when checked out from CVS
+# requires GNU autoconf and GNU automake
+# this is not meant to go into the distributions
+
+rm -f acinclude.m4 &&
+ln -s libtool.m4 acinclude.m4 &&
+aclocal &&
+automake --gnits --add-missing &&
+autoconf &&
+exit 0