#!/bin/csh
foreach file ( gpl.txt lgpl.txt IUCR_POLICY IUCR_POLICY.html NOTICE NOTICE.html \
cif2pdb.cshar.Z cif2pdb.shar.Z ciftbx.cmf ciftbx.cmn ciftbx.cmv ciftbx.sys \
cif_mm.dic.Z index.html ) 
  rm -f $file
end
foreach file (*)
  if ( -d $file ) then
    if ( -e $file/.undosymlinks ) then
      (cd $file; source .undosymlinks)
    endif
  endif
end
