12 lines
187 B
Bash
12 lines
187 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
if [ -x "`which autoreconf 2>/dev/null`" ] ; then
|
||
|
exec autoreconf -ivf
|
||
|
fi
|
||
|
|
||
|
aclocal && \
|
||
|
autoheader && \
|
||
|
automake --add-missing --force-missing --include-deps && \
|
||
|
autoconf
|
||
|
|