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

test -f ./Makefile && make distclean

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

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