From 6e0bee3ab1cd085f7ef572c7762ea9425e6dd418 Mon Sep 17 00:00:00 2001 From: "Robin Burchell w00t@inspircd.org" Date: Tue, 30 Sep 2008 18:45:11 +0000 Subject: [PATCH] add a standard autogen.sh, might be useful git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1226 5417fbe8-f217-4b02-8779-1006273d7864 --- autogen.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 autogen.sh diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 000000000..8f047c99a --- /dev/null +++ b/autogen.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +echo "Generating build information using aclocal, autoheader, automake and autoconf." +echo + +# Regerate configuration files +aclocal +autoheader +automake --gnu --add-missing --copy +autoconf + +echo +echo "Now you are ready to run ./configure"