ref: 729fda91ea43acd9d8c7d26808d3c9c65114740a
dir: /bootstrap/
#! /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"