#       Makefile for Adobe Futura

#       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 .vf and .tfm files should go:
vfdir=  $(tdsdir)\fonts\vf\adobe\futura
tfmdir= $(tdsdir)\fonts\tfm\adobe\futura

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

all:    VFs installfonts

VFs:
	$(fi) inst
	pltotf pfub8a.pl
	pltotf pfub8ac.pl
	pltotf pfub8r.pl
	pltotf pfub8rc.pl
	pltotf pfubo8a.pl
	pltotf pfubo8ac.pl
	pltotf pfubo8r.pl
	pltotf pfubo8rc.pl
	pltotf pfuk8a.pl
	pltotf pfuk8r.pl
	pltotf pfuko8a.pl
	pltotf pfuko8r.pl
	pltotf pful8a.pl
	pltotf pful8r.pl
	pltotf pfulo8a.pl
	pltotf pfulo8r.pl
	vptovf pfub8c.vpl
	vptovf pfub8cc.vpl
	vptovf pfub8t.vpl
	vptovf pfub8tc.vpl
	vptovf pfubo8c.vpl
	vptovf pfubo8cc.vpl
	vptovf pfubo8t.vpl
	vptovf pfubo8tc.vpl
	vptovf pfuk8c.vpl
	vptovf pfuk8t.vpl
	vptovf pfuko8c.vpl
	vptovf pfuko8t.vpl
	vptovf pful8c.vpl
	vptovf pful8t.vpl
	vptovf pfulo8c.vpl
	vptovf pfulo8t.vpl

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


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

