1#!/bin/sh
2LIBTOOLIZE=libtoolize
3SYSNAME=`uname`
4if [ "x$SYSNAME" = "xDarwin" ] ; then
5  LIBTOOLIZE=glibtoolize
6fi
7aclocal && \
8	autoheader && \
9	$LIBTOOLIZE && \
10	autoconf && \
11	automake --add-missing --copy
12