#! /bin/sh

if test "X$1" = X--force; then
   set -x

   aclocal -I /usr/local/share/aclocal/
   libtoolize --force --copy --automake
   aclocal -I /usr/local/share/aclocal/
   autoheader
   automake --gnu --add-missing --copy
   autoconf

else
   echo "You don't need to run bootstrap. Just run \"configure ; make\" "
fi
