summaryrefslogtreecommitdiffstats
path: root/bootstrap.sh
blob: 08a054ff2f608db53122ee5b95e6b323751bc02c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

set -ex

if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then
	cp -p .git/hooks/pre-commit.sample .git/hooks/pre-commit && \
	chmod +x .git/hooks/pre-commit && \
	echo "Activated pre-commit hook."
fi

aclocal
libtoolize -c
autoconf
autoheader
automake --foreign --add-missing --copy

CFLAGS="$CFLAGS -g -O0" ./configure --sysconfdir=/etc --localstatedir=/var

make clean