aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 385d17e878ebc7158e894b8a31bf2a71fe6fd245 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

set -x
set -e

if ! autoreconf -i; then
	aclocal
	autoheader
	automake --force-missing --add-missing
	autoconf
fi

./configure $@ && make clean && make -j${BUILDJOBS:-4} all