From 893aaabe9cfcd756b432ae94db15dd507fb15939 Mon Sep 17 00:00:00 2001 From: Mukund Sivaraman Date: Sun, 11 May 2008 16:09:17 +0530 Subject: [PATCH] Added autogen.sh --- autogen.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 autogen.sh diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..78e0028 --- /dev/null +++ b/autogen.sh @@ -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