#!/bin/csh
# This file is MF79.gf300
# Convert all the pk300 fonts to gf format
# This file selects the AMS m-series fonts.
set verbose
set tfmnames=/src/tex/amsfonts/tfm
foreach f (`find $tfmnames -name 'm*tfm' -print` )
  set g=`echo $f:t`
  echo $g
  set h=`echo $g:r`
  echo $h
  tftopl $f ./$h.pl
end
