#!/bin/tcsh
foreach i ( `find . -name Makefile.win -print`)
  echo $i
  cp -f $i $i:r
  chmod 444 $i:r
end
exit 0
