Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src add ${MACROS} to roff call to make output paper readable



details:   https://anonhg.NetBSD.org/src/rev/f6ecb2c256a4
branches:  trunk
changeset: 535288:f6ecb2c256a4
user:      pooka <pooka%NetBSD.org@localhost>
date:      Tue Aug 13 20:07:31 2002 +0000

description:
add ${MACROS} to roff call to make output paper readable

diffstat:

 lib/libcurses/PSD.doc/Makefile         |  4 ++--
 usr.bin/vi/docs/USD.doc/edit/Makefile  |  4 ++--
 usr.bin/vi/docs/USD.doc/exref/Makefile |  6 +++---
 usr.bin/vi/docs/USD.doc/vitut/Makefile |  8 ++++----
 4 files changed, 11 insertions(+), 11 deletions(-)

diffs (85 lines):

diff -r 5b5683745499 -r f6ecb2c256a4 lib/libcurses/PSD.doc/Makefile
--- a/lib/libcurses/PSD.doc/Makefile    Tue Aug 13 20:06:32 2002 +0000
+++ b/lib/libcurses/PSD.doc/Makefile    Tue Aug 13 20:07:31 2002 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.8 1999/01/26 22:45:02 tron Exp $
+#      $NetBSD: Makefile,v 1.9 2002/08/13 20:07:31 pooka Exp $
 #      from: @(#)Makefile      8.2 (Berkeley) 5/23/94
 
 DIR=   psd/19.curses
@@ -28,7 +28,7 @@
        ${VFONT} ${.IMPSRC} | grep -v "^'wh" > ${.TARGET}
 
 paper.ps: ${SRCS} ${OTHER} ${CEXAMPLES} ${TBLFILES}
-       ${SOELIM} -I${.CURDIR} Master | ${ROFF} > ${.TARGET}
+       ${SOELIM} -I${.CURDIR} Master | ${ROFF} ${MACROS} > ${.TARGET}
 
 # Unfortunately our make doesn't handle single-suffix rules.
 intro.2.tbl: intro.2
diff -r 5b5683745499 -r f6ecb2c256a4 usr.bin/vi/docs/USD.doc/edit/Makefile
--- a/usr.bin/vi/docs/USD.doc/edit/Makefile     Tue Aug 13 20:06:32 2002 +0000
+++ b/usr.bin/vi/docs/USD.doc/edit/Makefile     Tue Aug 13 20:07:31 2002 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.6 2001/03/31 11:37:47 aymeric Exp $
+#      $NetBSD: Makefile,v 1.7 2002/08/13 20:10:54 pooka Exp $
 #
 #      @(#)Makefile    8.1 (Berkeley) 6/8/93
 
@@ -9,7 +9,7 @@
 all: paper.ps
 
 paper.ps: ${SRCS}
-       ${TBL} ${SRCS} | ${ROFF} > ${.TARGET}
+       ${TBL} ${SRCS} | ${ROFF} ${MACROS} > ${.TARGET}
 
 # index for versatec is different from the one in edit.tut
 # because the fonts are different and entries reference page
diff -r 5b5683745499 -r f6ecb2c256a4 usr.bin/vi/docs/USD.doc/exref/Makefile
--- a/usr.bin/vi/docs/USD.doc/exref/Makefile    Tue Aug 13 20:06:32 2002 +0000
+++ b/usr.bin/vi/docs/USD.doc/exref/Makefile    Tue Aug 13 20:07:31 2002 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.3 2001/03/31 11:37:47 aymeric Exp $
+#      $NetBSD: Makefile,v 1.4 2002/08/13 20:10:55 pooka Exp $
 #
 # @(#)Makefile 8.8 (Berkeley) 10/10/96
 
@@ -10,9 +10,9 @@
 all: paper.ps summary.ps
 
 paper.ps: ex.rm
-       ${TBL} ex.rm | ${ROFF} > ${.TARGET}
+       ${TBL} ex.rm | ${ROFF} ${MACROS} > ${.TARGET}
 
 summary.ps: ex.summary
-       ${TBL} ex.summary | ${ROFF} > ${.TARGET}
+       ${TBL} ex.summary | ${ROFF} ${MACROS} > ${.TARGET}
 
 .include <bsd.doc.mk>
diff -r 5b5683745499 -r f6ecb2c256a4 usr.bin/vi/docs/USD.doc/vitut/Makefile
--- a/usr.bin/vi/docs/USD.doc/vitut/Makefile    Tue Aug 13 20:06:32 2002 +0000
+++ b/usr.bin/vi/docs/USD.doc/vitut/Makefile    Tue Aug 13 20:07:31 2002 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.3 2001/03/31 11:37:48 aymeric Exp $
+#      $NetBSD: Makefile,v 1.4 2002/08/13 20:10:55 pooka Exp $
 #
 #      @(#)Makefile    8.7 (Berkeley) 8/18/96
 
@@ -10,15 +10,15 @@
 all: vitut.ps summary.ps viapwh.ps
 
 vitut.ps: ${SRCS}
-       ${TBL} ${SRCS} | ${ROFF} > $@
+       ${TBL} ${SRCS} | ${ROFF} ${MACROS} > $@
        chmod 444 $@
 
 summary.ps: vi.summary
-       ${TBL} vi.summary | ${ROFF} > $@
+       ${TBL} vi.summary | ${ROFF} ${MACROS} > $@
        chmod 444 $@
 
 viapwh.ps: vi.apwh.ms
-       ${TBL} vi.apwh.ms | ${ROFF} > $@
+       ${TBL} vi.apwh.ms | ${ROFF} ${MACROS} > $@
        chmod 444 $@
 
 .include <bsd.doc.mk>



Home | Main Index | Thread Index | Old Index