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

test -f ./Makefile && make distclean

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

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