#!/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 24 Mar 1995 Sun Microsystems, Inc. All Rights Reserved
#
# "@(#)RELEASE VERSION SC3.0.1 31 Mar 1995"
#
if [ -d Templates.DB ] ; then
    cd Templates.DB
    /bin/rm -fr *.o *.s *.promise *.state *.system
    /bin/rm -fr *.temp *.cdb_link *.lock *.module
fi
