# /bin/csh -f
#
# $1 contains a new version of $2
# this programme compares the two files $1 and $2
# if they are different, then replace $1 by $2
# The programme is called by make
#
if({ cmp -s $1 $2 })then	# The same
	/bin/rm $1
else				# different
	/bin/mv $1 $2
endif
