shithub: aacdec

ref: fabe417fd214e21c7b12db661be16c6c0e24a1de
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"