diff options
author | wosch <wosch@FreeBSD.org> | 1998-05-18 16:57:10 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1998-05-18 16:57:10 +0000 |
commit | 09b90b62ab061fa54e90579d2e418c5fe155b2c7 (patch) | |
tree | e8aa090d901a62710a8fc8c1ca6a3d7d1e638bd9 /share | |
parent | e50ecde61b58719278311e5263d7a7d121e43c33 (diff) | |
download | FreeBSD-src-09b90b62ab061fa54e90579d2e418c5fe155b2c7.zip FreeBSD-src-09b90b62ab061fa54e90579d2e418c5fe155b2c7.tar.gz |
Add rules to generate PDF files.
Diffstat (limited to 'share')
-rw-r--r-- | share/mk/bsd.sgml.mk | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/share/mk/bsd.sgml.mk b/share/mk/bsd.sgml.mk index 5de42e0..83b8918 100644 --- a/share/mk/bsd.sgml.mk +++ b/share/mk/bsd.sgml.mk @@ -1,7 +1,7 @@ # bsd.sgml.mk - 8 Sep 1995 John Fieber # This file is in the public domain. # -# $Id: bsd.sgml.mk,v 1.23 1998/01/23 20:09:21 jkh Exp $ +# $Id: bsd.sgml.mk,v 1.24 1998/05/06 18:44:04 bde Exp $ # # The include file <bsd.sgml.mk> handles installing sgml documents. # @@ -78,6 +78,14 @@ SCOMPRESS_EXT= SCOMPRESS_EXT?= ${COMPRESS_EXT} .endif + +PS2PDF?= ps2pdf + +.SUFFIXES: .ps .pdf + +.ps.pdf: + ${PS2PDF} < ${.IMPSRC} > ${.TARGET} + _docs= _strip= .for _f in ${FORMATS} |