mirror of
https://github.com/osmarks/ngircd.git
synced 2024-12-12 09:50:29 +00:00
16 lines
224 B
Bash
Executable File
16 lines
224 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $Id: autogen.sh,v 1.7 2003/04/22 10:15:46 alex Exp $
|
|
#
|
|
|
|
WANT_AUTOMAKE=1.6
|
|
export WANT_AUTOMAKE
|
|
|
|
aclocal && \
|
|
autoheader && \
|
|
automake --add-missing && \
|
|
autoconf && \
|
|
echo "Okay, autogen.sh done."
|
|
|
|
# -eof-
|