aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authortoni <matzeton@googlemail.com>2015-11-14 22:53:40 +0100
committertoni <matzeton@googlemail.com>2015-11-14 23:05:32 +0100
commit7c3c6b99bec920ea850739e62b9fec8a29dc0dc0 (patch)
tree181dde43cef0401faf659e1ef1e2912063de90dc /autogen.sh
parent7bceed7feae9e9abd58cc653596f6a3678b0ce37 (diff)
~auto(conf|make)~
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 0000000..96fb4e9
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+rm -f config.cache
+mkdir -p build
+
+echo "Looking in current directory for macros."
+aclocal -I .
+echo "Adding missing files."
+automake --add-missing --force-missing
+echo "Autoconf, Autoheader, Automake"
+autoconf
+autoheader
+automake --foreign --add-missing --force-missing --copy
+exit $?
+