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

set -e
set -x

OLDPWD=$(pwd)
cd $(dirname $0)
test -f Makefile && make distclean

aclocal
autoheader
automake --force-missing --add-missing
autoconf

cd ${OLDPWD}
$(dirname $0)/configure $@ && make -j${BUILDJOBS:-4} all