#!/bin/sh
flist=`find . -name core -follow -print`
if [ ! -z "$flist" ] ; then
	rm $flist
fi

flist=`find . -name "*~" -follow -print`
if [ ! -z "$flist" ] ; then
	rm $flist
fi

flist=`find . -name "*.tar.gz" -follow -print`
if [ ! -z "$flist" ] ; then
	rm $flist
fi

flist=`find . -name "config.c*" -follow -print`
if [ ! -z "$flist" ] ; then
	rm $flist
fi


