#       Makefile for FF QType

#       This is for OS/2 with emTeX/TDS and GNU Make or IBM's nmake;
#   *** asterisks indicate directory names and commands
#       which need to be customized for other systems.

#   *** the TDS root dirctory:
tdsdir= e:\texmf

#   *** where the .fd, .vf and .tfm files should go:
fddir=  $(tdsdir)\tex\latex\qtype
vfdir=  $(tdsdir)\fonts\vf\fontfont\qtype
tfmdir= $(tdsdir)\fonts\tfm\fontfont\qtype

#   *** how to run fontinst:
fi=     tex

all:    VFs installfonts

VFs:
	$(fi) inst
	afm2tfm QTEtBo__.afm
	pltotf qtyper8rx.pl
	vptovf qtyper8tx.vpl
	vptovf qtyper8cx.vpl

installfonts:
	-mkdir $(fddir)
	-mkdir $(vfdir)
	-mkdir $(tfmdir)
	mv -f *.vf $(vfdir)
	mv -f *.tfm $(tfmdir)
	mv -f *.fd $(fddir)


clean:  
	-rm *.pl *.vpl q*.mtx 
	
zap:
	rm *.fd
	
realclean: clean zap

