summaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: 82cc273bc95baf30f257bfa18101adf2000e3686 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
if [ ! -d m4 ]; then mkdir m4; fi
aclocal -I m4 || exit 1
libtoolize || exit 1
autoheader || exit 1
automake --add-missing || exit 1
autoconf || exit 1
echo
echo Executing ./configure $@
echo
./configure "$@"