blob: 42cb6849c480176b51dcc78d44bbfab928faa743 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#! /bin/sh
if [ -x "`which autoreconf 2>/dev/null`" ] ; then
exec autoreconf -ivf
fi
aclocal -I m4 && \
autoheader && \
libtoolize --automake -c && \
autoconf && \
automake --add-missing --copy
|