ngircd-tor/autogen.sh

15 lines
221 B
Bash
Raw Normal View History

2001-12-11 22:53:04 +01:00
#!/bin/sh
#
2003-04-04 12:05:34 +02:00
# $Id: autogen.sh,v 1.5 2003/04/04 10:05:34 alex Exp $
2001-12-11 22:53:04 +01:00
#
2003-04-04 12:05:34 +02:00
export WANT_AUTOMAKE=1.6
2001-12-11 22:53:04 +01:00
aclocal && \
autoheader && \
automake --add-missing && \
2001-12-11 22:53:04 +01:00
autoconf && \
echo "Okay, autogen.sh war erfolgreich."
# -eof-