#!/bin/sh

AUTOCONF=${AUTOCONF:-autoconf}

rm -r -f ./autom4te.cache ./configure ./config.cache ./config.status ./config.log

if test "x$1" = "xclean" ; then
	exit 0
elif ${AUTOCONF} ; then
	rm -r -f autom4te.cache
	exit	0
else
	rm -r -f autom4te.cache
	exit	1
fi


