#! /bin/bash
# blackboard typefaces by Anthony Phan.
# file: @compile (stupid compilation script)
# last modification: 09.08.2001.
# 
# This script is helful for me. I just type 'bash @compile'
# then drink my coffee. It produces metrics and bitmaps (pk)
# for the 'ljfour' mode, then it wipes out temporary files
# and put the useful stuff in some directory...
# PLEASE CHANGE THE THIS FILE FOR YOUR OWN NEEDS.

for xx in 12 10 9 8 7 6 5
do
for FONT in mxyrm mxybx mxyti mxysl mxymi mxybxmi
do
#    mf "\mode=ljfive; input $FONT$xx"; gftopk $FONT$xx.600gf;
    mf "\mode=ljfive; mag=1.2; input $FONT$xx"; gftopk $FONT$xx.720gf;
done;
done;

for fontxx in mxyex8 mxyex9 mxyex10 mxyhb10 mxyspec10 mxyb10 mxybxsl10 mxybxti10
do
    mf "\mode=ljfour; input $fontxx"; gftopk $fontxx.600gf;
    mf "\mode=ljfour; mag=1.2; input $fontxx"; gftopk $fontxx.720gf;
done;

mv *.tfm ../tfm; mv *pk ../pk; rm *gf; rm *.log;

