1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 03:46:36 +02:00
Files
anope/autogen.sh
T

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"