#!/bin/sh
# Portable System Interface Copyright (c) 1997-1998 Tycho Softworks.
# $Id: clean 1.1 Tue, 23 Jun 1998 11:38:33 -0400 dyfet $

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


