# hp/tfms/Doit 3/31/93
# Generate 18 troff fwts for LaserJet III internal fonts from HP TFM files.

# Clean out old versions.
rm fwt/*

# Generate *.fwt in subdirectory fwt.
>fwt.doc
for i in *.tfm
do
echo $i:
j=`basename $i .tfm`.fwt
echo -n "$j:	" >>fwt.doc
/u/steve/troff/obj/fwtable -tv $i fwt/$j 2>>fwt.doc
done

# Rename to rational troff-style names.
cd fwt
mv crb14r8a.fwt Cour10_B.fwt
mv cri14r8a.fwt Cour10_I.fwt
mv crr14r8a.fwt Cour10_R.fwt
mv crb1cr8a.fwt Cour12_B.fwt
mv cri1cr8a.fwt Cour12_I.fwt
mv crr1cr8a.fwt Cour12_R.fwt
mv crb1cr8c.fwt Cour12L_B.fwt
mv crr1cr8c.fwt Cour12L_R.fwt
mv lpr0yr8a.fwt Linep_R.fwt
mv lpr0yr8c.fwt LinepL_R.fwt
mv trb0000s.fwt CGTimes_B.fwt
mv tri0000s.fwt CGTimes_I.fwt
mv trj0000s.fwt CGTimes_BI.fwt
mv trr0000s.fwt CGTimes_R.fwt
mv unb0000s.fwt Univers_B.fwt
mv uni0000s.fwt Univers_I.fwt
mv unj0000s.fwt Univers_BI.fwt
mv unr0000s.fwt Univers_R.fwt

# end of hp/tfms/Doit
