summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 1f7e1eb510a53663a9e2d5ced380576b2cb09f58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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

aclocal
autoheader
automake -a
autoconf
./configure "$@"