]> arthur.barton.de Git - ngircd-alex.git/blob - autogen.sh
Restructured debian packaging system: now there are two packages, a "standard"
[ngircd-alex.git] / autogen.sh
1 #!/bin/sh
2 #
3 # $Id: autogen.sh,v 1.7 2003/04/22 10:15:46 alex Exp $
4 #
5
6 WANT_AUTOMAKE=1.6
7 export WANT_AUTOMAKE
8
9 aclocal && \
10  autoheader && \
11  automake --add-missing && \
12  autoconf && \
13  echo "Okay, autogen.sh done."
14
15 # -eof-