diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2002-10-29 16:13:21 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2002-10-29 16:13:21 +0000 |
commit | e5f3fe8c973de153c99b24e848fffdfe1cd000e2 (patch) | |
tree | ee8b6633d450fc6794f6244a5d60746a13d0bdfb /share/doc | |
parent | 3c193bda8abd167a8850338025804856d57bfc9d (diff) |
PRINTERDEVICE can now take multiple values.
Notes
Notes:
svn path=/head/; revision=106151
Diffstat (limited to 'share/doc')
-rw-r--r-- | share/doc/psd/title/Makefile | 5 | ||||
-rw-r--r-- | share/doc/smm/title/Makefile | 5 | ||||
-rw-r--r-- | share/doc/usd/13.viref/Makefile | 2 | ||||
-rw-r--r-- | share/doc/usd/title/Makefile | 7 |
4 files changed, 2 insertions, 17 deletions
diff --git a/share/doc/psd/title/Makefile b/share/doc/psd/title/Makefile index c125c084489d..d073730b322c 100644 --- a/share/doc/psd/title/Makefile +++ b/share/doc/psd/title/Makefile @@ -4,9 +4,4 @@ VOLUME= psd DOC= Title SRCS= Title -# unroff(1) requires a macro package as an argument -.if defined(PRINTERDEVICE) && ${PRINTERDEVICE} == "html" -MACROS= -ms -.endif - .include <bsd.doc.mk> diff --git a/share/doc/smm/title/Makefile b/share/doc/smm/title/Makefile index b2bbe8fe9ee7..c1f1c9b64419 100644 --- a/share/doc/smm/title/Makefile +++ b/share/doc/smm/title/Makefile @@ -4,9 +4,4 @@ VOLUME= smm DOC= Title SRCS= Title -# unroff(1) requires a macro package as an argument -.if defined(PRINTERDEVICE) && ${PRINTERDEVICE} == "html" -MACROS= -ms -.endif - .include <bsd.doc.mk> diff --git a/share/doc/usd/13.viref/Makefile b/share/doc/usd/13.viref/Makefile index 7d4260019ed9..ac9f088c3657 100644 --- a/share/doc/usd/13.viref/Makefile +++ b/share/doc/usd/13.viref/Makefile @@ -22,7 +22,7 @@ CLEANFILES+= index.so.${_dev} # Build index.so as a side-effect of building the paper. index.so.${_dev}: ${SRCS} ${EXTRA:Nindex.so.${_dev}} sed -e 's:^\.so index\.so\.\\\*\[\.T\]$$::' vi.ref-patched | \ - ${ROFF} -U -z + ${ROFF.${_dev}} -U -z sed -e 's/MINUSSIGN/-/' \ -e 's/DOUBLEQUOTE/""/' \ -e "s/SQUOTE/'/" \ diff --git a/share/doc/usd/title/Makefile b/share/doc/usd/title/Makefile index 4b140434fcfb..b773fc3c1358 100644 --- a/share/doc/usd/title/Makefile +++ b/share/doc/usd/title/Makefile @@ -1,12 +1,7 @@ # $FreeBSD$ VOLUME= usd -SRCS= Title DOC= Title - -# unroff(1) requires a macro package as an argument -.if defined(PRINTERDEVICE) && ${PRINTERDEVICE} == "html" -MACROS= -ms -.endif +SRCS= Title .include <bsd.doc.mk> |