# Author: Maurizio Loreti, aka MLO or (HAM) I3NOO # Work: University of Padova - Department of Physics # Via F. Marzolo, 8 - 35131 PADOVA - Italy # Phone: +39 (049) 827-7216 FAX: +39 (049) 827-7102 # EMail: loreti@pd.infn.it # WWW: http://www.pd.infn.it/~loreti/mlo.html # # $Id$ # Dependencies %.ps:%.dvi dvips -P boeck -P cmz -o $@ $< %.dvi:%.tex latex $< while grep Rerun $*.log ; do latex $< ; done # Phony targets .PHONY: all clean samples tarball # Rules all: samples texfiles: generate.tex ArnoldBoecklin-ExtraBold.sfd make clean tex generate.tex for file in pbck*.pl; do pltotf $$file; done for file in pbck*.vpl; do vptovf $$file; done touch texfiles clean: -rm core *~ texfiles -rm *.tfm *.vf *.pl *.vpl *.mtx *.fd -rm *.log *.aux *.dvi *.ps *.pdf samples: texfiles t1sample.ps sample.ps example.ps t1sample.ps: t1sample.dvi sample.ps: sample.dvi example.ps: example.dvi t1sample.dvi: t1sample.tex sample.dvi: sample.tex example.dvi: example.tex tarball: texfiles README tarmake if [ -e /tmp/boecklin ]; then rm -r /tmp/boecklin; fi mkdir /tmp/boecklin/ cp tarmake /tmp/boecklin/Makefile cp ArnoldBoecklin-ExtraBold.pfb ArnoldBoecklin-ExtraBold.afm \ /tmp/boecklin/ cp README t1sample.tex sample.tex example.tex /tmp/boecklin/ cp config.boeck pbck.map pbck.sty /tmp/boecklin/ cp *.fd *.tfm *.vf /tmp/boecklin/ tar cvf /home/loreti/export/boeck.tar -C /tmp/ boecklin/ gzip -fv9 /home/loreti/export/boeck.tar