summary refs log tree commit diff
path: root/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh20
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-