#!/bin/sh 
files=`(cd ../pTk/mTk; ls *.[ch])`
rm -f Fixup 
for f in $files
 do 
  if [ -f tk4.0b2/$f ]
   then 
    cp ../pTk/mTk/$f .
    if merge $f tk4.0b2/$f tk4.0b3/$f 
     then echo "    $f is okay"
     else 
      echo ">>> $f needs fixing"
      echo $f >> Fixup 
    fi 
  fi 
 done
