shithub: aacdec

ref: d8e1ff74089f3a0125bcf56c0c1797015feeb0c9
dir: aacdec/bootstrap

View raw version
#! /bin/sh

case $OSTYPE in
	darwin*)
	LIBTOOLIZE=glibtoolize
	;;
	*)
	LIBTOOLIZE=libtoolize
	;;
esac

aclocal -I .                   && \
autoheader                     && \
$LIBTOOLIZE --automake --copy   && \
automake --add-missing --copy  && \
autoconf                       && \
echo "Ready to run ./configure"