mirror of
https://github.com/osmarks/ngircd.git
synced 2024-12-15 11:20:26 +00:00
15 lines
210 B
Bash
Executable File
15 lines
210 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $Id: autogen.sh,v 1.6 2003/04/13 22:34:17 alex Exp $
|
|
#
|
|
|
|
export WANT_AUTOMAKE=1.6
|
|
|
|
aclocal && \
|
|
autoheader && \
|
|
automake --add-missing && \
|
|
autoconf && \
|
|
echo "Okay, autogen.sh done."
|
|
|
|
# -eof-
|