1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-28 12:56:18 +00:00
ngircd/autogen.sh

17 lines
284 B
Bash
Raw Normal View History

2001-12-11 21:53:04 +00:00
#!/bin/sh
#
# $Id: autogen.sh,v 1.3 2002/03/12 14:37:51 alex Exp $
2001-12-11 21:53:04 +00:00
#
if [ -f configure ]; then
echo "autogen.sh: configure-Skript existiert bereits ..."
2001-12-11 21:53:04 +00:00
fi
aclocal && \
autoheader && \
automake --add-missing && \
2001-12-11 21:53:04 +00:00
autoconf && \
echo "Okay, autogen.sh war erfolgreich."
# -eof-