#!/bin/csh -f
#Clean 
#This script will delete excess maxplus2 files
#By: Satneev Bhamra 
#Date: October 23, 2001

#set List ( *.acf *.fit *.hif)


echo -n "WARNING! You are about to delete files, do you wish to continue (y/n)?"
set ans = $<

if ( "$ans" == "y" ) then
   rm *.fit *.hif *.hex *.pin *.pof *.rpt *.snf *.sym *.ttf *.vho *.cnf *.ndb *.mmf 
   echo "The excess files have been removed."
   exit
else
   echo "No files have been deleted."
   exit

endif
