#!/bin/csh -f
#
# $Id: cktcl,v 1.1 1997/04/10 21:20:23 dieter 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
