summaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: e1f46a0749092c41760bfd6de3eb7615ee2058e8 (plain)
1
2
3
4
5
6
7
#!/bin/sh
if [ ! -d m4 ]; then echo mkdir m4; fi
aclocal -I m4 || exit 1
libtoolize || exit 1
autoheader || exit 1
automake --add-missing || exit 1
autoconf || exit 1