: Build_fwt 12/28/90
: Build font width tables in subdirectory fwt
: and Log files in each font subdirectory.
: Takes about 10.5 minutes currently.
LIST=Fontlist
rm fwt/*
>$LIST
for dir in Century Courier Helvetica Humanist LinePrinter Other Prestige Times
do
	echo $dir:
	echo $dir: >>$LIST
	cd $dir
	for i in *.*
	do
		echo -n $i:
		/tmp/troff/fwtable -v $i ../fwt/$i
	done >Log 2>&1
	cd ..
	cat $dir/Log >>$LIST
	echo >>$LIST
done
echo Done!
