shithub: aacdec

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