summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:11 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:11 +0000
commit6e0bee3ab1cd085f7ef572c7762ea9425e6dd418 (patch)
treead4948bb510b03e24f9787d2b9a588e6f1715d9d
parent5587d9a543020f88ac05785921b719d87db98911 (diff)
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
-rwxr-xr-xautogen.sh13
1 files changed, 13 insertions, 0 deletions
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"