diff options
Diffstat (limited to '')
-rwxr-xr-x | autogen.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..c235230 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,26 @@ +#! /bin/sh + + +if test x"${AUTORECONF}" = x""; then + autoreconf -V 1>/dev/null 2>/dev/null + if test $? -eq 0; then + AUTORECONF=autoreconf + fi +fi + +if test x"${AUTORECONF}" != x""; then + ${AUTORECONF} -vfi -I m4 +else + AUTOCONF=${AUTOCONF:-autoconf} + AUTOMAKE=${AUTOMAKE:-automake} + AUTOHEADER=${AUTOHEADER:-autoheader} + ACLOCAL=${ACLOCAL:-aclocal} + + ${AUTOCONF} --version + ${AUTOMAKE} --version + + ${ACLOCAL} -I m4 -I . + ${AUTOHEADER} -I . + ${AUTOMAKE} --add-missing --copy --force-missing --foreign + ${AUTOCONF} +fi |