#!/bin/sh
# ptclean -- clean up all potentially compiler-generated files
# from cafe's Templates-instantiation subdirectory, except the
# "Templates.opt", since that one could be user-modified.
#
# Copyright 12/14/98 Sun Microsystems, Inc. All Rights Reserved
#
# "@(#)RELEASE VERSION SC5.0 @(#)ptclean	1.4  12/14/98 17:26:11"
#

currwd=`pwd`

if [ -d $currwd/Templates.DB ] ; then
    cd $currwd/Templates.DB 
    /bin/rm -fr *.o *.s *.promise *.state *.system 
    /bin/rm -fr *.temp *.cdb_link *.lock *.module 
    /bin/rm -fr Module.DB 
fi
if [ -d $currwd/SunWS_cache ] ; then
    cd $currwd/SunWS_cache 
    /bin/rm -fr CC_*
fi
