diff options
Diffstat (limited to 'autogen.sh')
-rw-r--r-- | autogen.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh new file mode 100644 index 0000000..ec0a21a --- /dev/null +++ b/autogen.sh @@ -0,0 +1,21 @@ +#!/bin/sh -e + +set -e + +# Some boiler plate to get git setup as expected +if test -d .git; then + if test -f .git/hooks/pre-commit.sample && \ + test ! -f .git/hooks/pre-commit; then + cp -pv .git/hooks/pre-commit.sample .git/hooks/pre-commit + fi +fi + +set -x + +aclocal +autoheader +libtoolize +automake -a +autoconf +./configure "$@" + |