bedstead/Makefile
2012-05-05 01:40:38 +01:00

20 lines
487 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 -dTextAlphaBits=4 \
-sOutputFile=${.TARGET} bedstead.pfa ${.IMPSRC}
clean: .PHONY
rm -f bedstead *.sfd *.otf *.pfa *.png