Bootstrap the autoconf system

This commit is contained in:
Robert James Kaes 2004-08-20 19:56:05 +00:00
parent 7b0f1fe562
commit 337af524dd

14
bootstrap Executable file
View File

@ -0,0 +1,14 @@
#!/bin/sh
# -*- sh -*-
#
# Make the Autotools scripts after checking out the source code from CVS.
# This script was taken from the Autotool Book. I wonder if autoreconf
# can now be used...
#
test -d config || mkdir config
set -x
aclocal -I config \
&& autoheader \
&& automake --gnu --add-missing \
&& autoconf