blob: 285868c35929315274fe123e9e9b688693cc9a7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
set -e
set -x
test -f ./Makefile && make distclean
aclocal
autoheader
automake --force-missing --add-missing
autoconf
./configure $@ && make -j${BUILDJOBS:-4} all
|