#!/bin/sh
# This file is CM.pk300
# Convert all the gf300 fonts to pk format
# This file converts the Unix distribution CM fonts. 
#       (plain.tex lplain.tex [10pt set only], webmac.tex)
export GFFONTS;GFFONTS=/src/tex/cmfonts/gf/gf300
for f in `find $GFFONTS -name '*gf' -print` 
do
  gftopk -v $f
done
