#!/bin/csh
foreach file ( rasmol.hlp rasmol.hlp.gz rasmol.man )
  if ( ! -Le $file ) then
    ln -s ../doc/$file $file
  endif
end
foreach file (*)
  if ( -d $file ) then
    if ( -e $file/.symlinks ) then
      (cd $file; source .symlinks)
    endif
  endif
end

