shithub: aacdec

ref: b5d4f6affc6a9107faaa60a2b58a4d15aea11b95
dir: /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"