bedstead/Makefile
Ben Harris 2ed43ed355 Every font's Web page should include a sample. This one now does so,
with all the machinery to construct it as well.
2009-12-05 00:13:16 +00:00

20 lines
469 B
Makefile

all: bedstead.otf sample.png title.png
bedstead.sfd: bedstead
./bedstead > bedstead.sfd
.SUFFIXES: .ps .png .sfd .otf .pfa
.sfd.otf:
fontforge -lang=ff -c 'Open($$1); Generate($$2)' ${.IMPSRC} ${.TARGET}
.sfd.pfa:
fontforge -lang=ff -c 'Open($$1); Generate($$2)' ${.IMPSRC} ${.TARGET}
.ps.png: bedstead.pfa
gs -dSAFER -dBATCH -dNOPAUSE -sDEVICE=pnggray \
-sOutputFile=${.TARGET} bedstead.pfa ${.IMPSRC}
clean: .PHONY
rm -f bedstead *.sfd *.otf *.pfa *.png