]> git.notmuchmail.org Git - notmuch/blobdiff - contrib/notmuch-deliver/autogen.sh
notmuch-deliver: Initial import
[notmuch] / contrib / notmuch-deliver / autogen.sh
diff --git a/contrib/notmuch-deliver/autogen.sh b/contrib/notmuch-deliver/autogen.sh
new file mode 100755 (executable)
index 0000000..2c660bc
--- /dev/null
@@ -0,0 +1,20 @@
+#!/bin/sh
+# vim: set sw=4 et sts=4 tw=80 :
+
+die() {
+    echo "$@" >&2
+    exit 1
+}
+
+echo ">>> libtoolize --copy --force --automake"
+libtoolize --copy --force --automake || die "libtoolize failed"
+echo ">>> rm -f config.cache"
+rm -f config.cache
+echo ">>> aclocal -I m4"
+aclocal -I m4 || die "aclocal failed"
+echo ">>> autoheader"
+autoheader || die "autoheader failed"
+echo ">>> autoconf"
+autoconf || die "autoconf failed"
+echo ">>> automake --foreign --add-missing --copy"
+automake --foreign --add-missing --copy || die "automake failed"