1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-27 20:36:18 +00:00
ngircd/autogen.sh

16 lines
224 B
Bash
Raw Normal View History

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