#!/bin/csh -f
#
# $Id: cktcl,v 3.20 1995/07/27 14:49:30 kohl Exp $
#
if ( "#$1#" == '##' ) then
	echo "usage: cktcl <file>"
	exit 0
endif
#
cmp ../$1 ../../$1 >& /dev/null
#
if ( $status != 0 ) then
	echo "Warning: TCL File $1 needs to be installed - use make install"
endif
