]> arthur.barton.de Git - ngircd-alex.git/blob - autogen.sh
abc8b01d49b56c7aca9f69cd179694b8d0645add
[ngircd-alex.git] / autogen.sh
1 #!/bin/sh
2 #
3 # $Id: autogen.sh,v 1.1 2001/12/11 21:53:04 alex Exp $
4 #
5 # $Log: autogen.sh,v $
6 # Revision 1.1  2001/12/11 21:53:04  alex
7 # Initial revision
8 #
9
10 if [ -f configure ]; then
11         echo "autogen.sh: configure-Skript existiert bereits!"
12 fi
13
14 aclocal && \
15  autoheader && \
16  automake --add-missing --copy && \
17  autoconf && \
18  echo "Okay, autogen.sh war erfolgreich."
19
20 # -eof-