#!/bin/sh

if [ ! -d sbin ]; then
  echo "$0 must be called from top directory (../$0)"
  exit 1
fi

# Simply run autoreconf
autoreconf -vi $@

# Remove cache directory
\rm -rf autom4te.cache
