shithub: aacdec

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