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