#!/bin/sh

force=
autoreconfprog=./util/autoconf/autoreconf
verbose=false

autoreconf="/bin/sh $autoreconfprog"

usage="Usage: $0 [--force] [--verbose] [--help]"
for option
do
  case "$option" in
  --force | -f)
    echo "Remaking all configuration files"
    force=--force ;;
  -help | --help | --hel | --he | --h)
    echo "$usage"; exit 0 ;;
  -v | --verbose)
    verbose=true ;;
  *) echo "$usage"; exit 1 ;;
  esac
done


if $verbose ; then 
	echo $autoreconf -m util/autoconf -l . --verbose $force 
fi
$autoreconf -m util/autoconf -l . --verbose $force 
