#!/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 13 Jul 1995 Sun Microsystems, Inc. All Rights Reserved
#
# DO NOT DELETE the line below. It creates proper version string.
# @(#)RELEASE VERSION PC3.0.1  21 Jan 1995
# DO NOT DELETE the line above. It creates proper version string.
#
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
