#!/bin/sh
/bin/rm -f config.cache config.h
if aclocal && autoheader && automake && autoconf ; then
  echo
  echo "All auto* files were recreated successfully."
  echo
else
  echo
  echo "Some part of the preparation process failed."
  echo "Please refer to INSTALL for details."
  echo
  exit 1
fi
exit
