Deleted Added
full compact
bsd.doc.mk (88052) bsd.doc.mk (94940)
1# from: @(#)bsd.doc.mk 5.3 (Berkeley) 1/2/91
1# from: @(#)bsd.doc.mk 5.3 (Berkeley) 1/2/91
2# $FreeBSD: head/share/mk/bsd.doc.mk 88052 2001-12-17 13:45:56Z ru $
2# $FreeBSD: head/share/mk/bsd.doc.mk 94940 2002-04-17 13:49:29Z ru $
3#
4# The include file <bsd.doc.mk> handles installing BSD troff documents.
5#
6#
7# +++ variables +++
8#
9# LPR Printer command. [lpr]
10#
11# [incomplete]
12#
13# +++ targets +++
14#
15# [incomplete]
16
3#
4# The include file <bsd.doc.mk> handles installing BSD troff documents.
5#
6#
7# +++ variables +++
8#
9# LPR Printer command. [lpr]
10#
11# [incomplete]
12#
13# +++ targets +++
14#
15# [incomplete]
16
17.if !target(__initialized__)
18__initialized__:
19.if exists(${.CURDIR}/../Makefile.inc)
20.include "${.CURDIR}/../Makefile.inc"
21.endif
22.endif
17.include <bsd.init.mk>
23
24PRINTERDEVICE?= ascii
25
26BIB?= bib
27EQN?= eqn -T${PRINTERDEVICE}
28GREMLIN?= grn
29GRIND?= vgrind -f
30INDXBIB?= indxbib

--- 51 unchanged lines hidden (view full) ---

82.endif
83
84# Compatibility mode flag for groff. Use this when formatting documents with
85# Berkeley me macros.
86COMPAT?= -C
87
88.PATH: ${.CURDIR} ${SRCDIR}
89
18
19PRINTERDEVICE?= ascii
20
21BIB?= bib
22EQN?= eqn -T${PRINTERDEVICE}
23GREMLIN?= grn
24GRIND?= vgrind -f
25INDXBIB?= indxbib

--- 51 unchanged lines hidden (view full) ---

77.endif
78
79# Compatibility mode flag for groff. Use this when formatting documents with
80# Berkeley me macros.
81COMPAT?= -C
82
83.PATH: ${.CURDIR} ${SRCDIR}
84
90.MAIN: all
91all: ${DFILE}
92
93.if !target(print)
94print: ${DFILE}
95.if defined(NODOCCOMPRESS)
96 ${LPR} ${DFILE}
97.else
98 ${DCOMPRESS_CMD} -d ${DFILE} | ${LPR}

--- 78 unchanged lines hidden ---
85all: ${DFILE}
86
87.if !target(print)
88print: ${DFILE}
89.if defined(NODOCCOMPRESS)
90 ${LPR} ${DFILE}
91.else
92 ${DCOMPRESS_CMD} -d ${DFILE} | ${LPR}

--- 78 unchanged lines hidden ---