mirror of
https://bjh21.me.uk/bedstead/.git
synced 2026-07-10 05:53:05 -04:00
20 lines
469 B
Makefile
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
|