1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 15:26:39 +02:00
Files
anope/autogen.sh
T
Robin Burchell w00t@inspircd.org 6e0bee3ab1 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
2008-09-30 18:45:11 +00:00

14 lines
248 B
Bash
Executable File

#!/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"