ngircd-tor/autogen.sh

16 lines
224 B
Bash
Raw Normal View History

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