Added autogen boilerplate.
authorThomas Richter <thomas.richter@iis.fraunhofer.de>
Tue, 7 Sep 2021 11:38:27 +0000 (13:38 +0200)
committerThomas Richter <thomas.richter@iis.fraunhofer.de>
Tue, 7 Sep 2021 11:38:27 +0000 (13:38 +0200)
autogen.sh [new file with mode: 0755]

diff --git a/autogen.sh b/autogen.sh
new file mode 100755 (executable)
index 0000000..fc34bd5
--- /dev/null
@@ -0,0 +1,14 @@
+#! /bin/sh
+
+srcdir=`dirname $0`
+test -z "$srcdir" && srcdir=.
+
+ORIGDIR=`pwd`
+cd $srcdir
+
+autoreconf -v --install || exit 1
+cd $ORIGDIR || exit $?
+
+if test -z "$NOCONFIGURE"; then
+    $srcdir/configure "$@"
+fi