From: Ben Harris Date: Sat, 23 Nov 2013 18:53:52 +0000 (+0000) Subject: Use Ghostscript's "-o" option to simplify commands. X-Git-Tag: bedstead-001.000~54 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~bjharris/git?a=commitdiff_plain;h=f35080d0bf36de028638462075c411c4bb3642d3;p=bedstead.git Use Ghostscript's "-o" option to simplify commands. --- diff --git a/Makefile b/Makefile index ac12d4a..6bffecf 100644 --- a/Makefile +++ b/Makefile @@ -12,12 +12,12 @@ bedstead.sfd: bedstead fontforge -lang=ff -c 'Open($$1); Generate($$2)' $< $@ .ps.png: bedstead.pfa - gs -dSAFER -dBATCH -dNOPAUSE -sDEVICE=pnggray -dTextAlphaBits=4 \ - -sOutputFile=$@ bedstead.pfa $< + gs -dSAFER -sDEVICE=pnggray -dTextAlphaBits=4 \ + -o $@ bedstead.pfa $< df.png: df.ps bedstead.pfa - gs -dSAFER -dBATCH -dNOPAUSE -sDEVICE=png16m \ - -sOutputFile=$@ bedstead.pfa $< + gs -dSAFER -sDEVICE=png16m \ + -o $@ bedstead.pfa $< clean: .PHONY rm -f bedstead *.sfd *.otf *.bdf *.pfa *.png