diff options
| author | Alexander Barton <alex@barton.de> | 2001-12-11 21:53:04 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2001-12-11 21:53:04 +0000 |
| commit | f4ade537d550b872b7e86e6ffce940dfbad4c60c (patch) | |
| tree | 4930913c7110b4b174a7d167c9a97363e8caf891 /autogen.sh | |
| download | ngircd-f4ade537d550b872b7e86e6ffce940dfbad4c60c.tar.gz ngircd-f4ade537d550b872b7e86e6ffce940dfbad4c60c.zip | |
Initial revision
Diffstat (limited to 'autogen.sh')
| -rwxr-xr-x | autogen.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 00000000..abc8b01d --- /dev/null +++ b/autogen.sh @@ -0,0 +1,20 @@ +#!/bin/sh +# +# $Id: autogen.sh,v 1.1 2001/12/11 21:53:04 alex Exp $ +# +# $Log: autogen.sh,v $ +# Revision 1.1 2001/12/11 21:53:04 alex +# Initial revision +# + +if [ -f configure ]; then + echo "autogen.sh: configure-Skript existiert bereits!" +fi + +aclocal && \ + autoheader && \ + automake --add-missing --copy && \ + autoconf && \ + echo "Okay, autogen.sh war erfolgreich." + +# -eof- |