blob: d1443b9ac7a7cc2bd0084d33f4010384683c3cc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
set -x
if ! autoreconf -fi; then
aclocal
autoheader
automake --force-missing --add-missing
autoconf
fi
$(dirname $0)/configure $@ && make -j${BUILDJOBS:-4} all
|