1
0
mirror of https://github.com/osmarks/ngircd.git synced 2025-10-26 19:47:38 +00:00

Initial revision

This commit is contained in:
Alexander Barton
2001-12-11 21:53:04 +00:00
commit f4ade537d5
18 changed files with 1070 additions and 0 deletions

20
autogen.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/sh
#
# $Id: autogen.sh,v 1.1 2001/12/11 21:53:04 alex Exp $
#
# $Log: autogen.sh,v $
# Revision 1.1 2001/12/11 21:53:04 alex
# Initial revision
#
if [ -f configure ]; then
echo "autogen.sh: configure-Skript existiert bereits!"
fi
aclocal && \
autoheader && \
automake --add-missing --copy && \
autoconf && \
echo "Okay, autogen.sh war erfolgreich."
# -eof-