summaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: 440c1e23ffa5567b8695495ba8e49d65a2b21194 (plain)
1
2
3
4
5
6
7
#!/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