From b0a62b8c676ad0d5eb279fcde7b68f8fe744f042 Mon Sep 17 00:00:00 2001 From: david Date: Sun, 30 Dec 2001 02:28:31 +0000 Subject: [PATCH] Added autogen.sh script to simplify creating autogenerated files. --- autogen.sh | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 autogen.sh diff --git a/autogen.sh b/autogen.sh new file mode 100644 index 00000000..22d20ab6 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,26 @@ +#!/bin/sh + +echo "Running aclocal" +aclocal + +echo "Running autoheader" +autoheader + +echo "Running automake" +automake --add-missing + +echo "Running autoconf" +autoconf + +echo "" +echo "======================================" + +if [ -f config.cache ]; then + echo "config.cache exists. Removing the config.cache file will force" + echo "the ./configure script to rerun all it's tests rather than using" + echo "the previously cached values." + echo "" +fi + +echo "Now you are ready to run './configure'" +echo "======================================"