2002-02-12 00:14:58 +03:00
|
|
|
# $NetBSD: bsd.doc.mk,v 1.57 2002/02/11 21:14:58 mycroft Exp $
|
1994-06-30 09:31:04 +04:00
|
|
|
# @(#)bsd.doc.mk 8.1 (Berkeley) 8/14/93
|
1993-03-27 15:17:32 +03:00
|
|
|
|
2001-11-02 08:21:47 +03:00
|
|
|
.include <bsd.init.mk>
|
1997-10-11 12:16:24 +04:00
|
|
|
|
2001-11-02 08:21:47 +03:00
|
|
|
##### Basic targets
|
1997-05-07 20:35:44 +04:00
|
|
|
.PHONY: cleandoc docinstall print spell
|
2001-08-14 11:02:13 +04:00
|
|
|
clean: cleandoc
|
2001-11-02 08:21:47 +03:00
|
|
|
realinstall: docinstall
|
1997-05-07 00:54:31 +04:00
|
|
|
|
2001-11-02 08:21:47 +03:00
|
|
|
##### Default values
|
1993-06-10 02:00:27 +04:00
|
|
|
EQN?= eqn
|
|
|
|
GREMLIN?= grn
|
1993-03-21 12:45:37 +03:00
|
|
|
GRIND?= vgrind -f
|
|
|
|
INDXBIB?= indxbib
|
1993-06-10 02:00:27 +04:00
|
|
|
PIC?= pic
|
1993-03-21 12:45:37 +03:00
|
|
|
REFER?= refer
|
2001-11-13 02:16:17 +03:00
|
|
|
ROFF?= ${GROFF} -Tps
|
1993-03-21 12:45:37 +03:00
|
|
|
SOELIM?= soelim
|
1993-06-10 02:00:27 +04:00
|
|
|
TBL?= tbl
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2001-11-02 08:21:47 +03:00
|
|
|
##### Build rules
|
1994-06-19 05:07:24 +04:00
|
|
|
.if !target(paper.ps)
|
|
|
|
paper.ps: ${SRCS}
|
2001-08-14 14:38:27 +04:00
|
|
|
${ROFF} ${MACROS} ${PAGES} ${.ALLSRC} > ${.TARGET}
|
1994-06-19 05:07:24 +04:00
|
|
|
.endif
|
1993-06-10 02:00:27 +04:00
|
|
|
|
2001-11-02 08:21:47 +03:00
|
|
|
.if ${MKSHARE} != "no"
|
|
|
|
realall: paper.ps
|
1993-03-21 12:45:37 +03:00
|
|
|
.endif
|
|
|
|
|
2001-11-02 08:21:47 +03:00
|
|
|
##### Install rules
|
|
|
|
docinstall:: # ensure existence
|
1999-02-12 04:10:06 +03:00
|
|
|
.if ${MKDOC} != "no"
|
2000-06-06 09:40:47 +04:00
|
|
|
|
2000-06-06 13:53:29 +04:00
|
|
|
__docinstall: .USE
|
2001-11-02 08:21:47 +03:00
|
|
|
${INSTALL_FILE} -o ${DOCOWN} -g ${DOCGRP} -m ${DOCMODE} \
|
|
|
|
${.ALLSRC} ${.TARGET}
|
|
|
|
|
|
|
|
FILES?= ${SRCS}
|
2000-06-06 13:53:29 +04:00
|
|
|
|
2001-11-02 08:21:47 +03:00
|
|
|
.for F in Makefile ${FILES:O:u} ${EXTRA}
|
|
|
|
_F:= ${DESTDIR}${DOCDIR}/${DIR}/${F} # installed path
|
|
|
|
|
2002-02-12 00:14:58 +03:00
|
|
|
.if !defined(UPDATE)
|
|
|
|
${_F}! ${F} __docinstall # install rule
|
|
|
|
.if !defined(BUILD) && !make(all) && !make(${F})
|
|
|
|
${_F}! .MADE # no build at install
|
|
|
|
.endif
|
|
|
|
.else
|
2001-11-02 08:21:47 +03:00
|
|
|
${_F}: ${F} __docinstall # install rule
|
1999-09-05 01:48:33 +04:00
|
|
|
.if !defined(BUILD) && !make(all) && !make(${F})
|
2001-11-02 08:21:47 +03:00
|
|
|
${_F}: .MADE # no build at install
|
1997-01-17 04:15:55 +03:00
|
|
|
.endif
|
2002-02-12 00:14:58 +03:00
|
|
|
.endif
|
|
|
|
|
|
|
|
docinstall:: ${_F}
|
|
|
|
.PRECIOUS: ${_F} # keep if install fails
|
1997-03-25 00:54:12 +03:00
|
|
|
.endfor
|
|
|
|
|
2001-11-02 08:21:47 +03:00
|
|
|
.undef _F
|
|
|
|
.endif # ${MKDOC} != "no"
|
|
|
|
|
|
|
|
##### Clean rules
|
|
|
|
cleandoc:
|
|
|
|
rm -f paper.* [eE]rrs mklog ${CLEANFILES}
|
|
|
|
|
|
|
|
##### Custom rules
|
|
|
|
.if !target(print)
|
|
|
|
print: paper.ps
|
|
|
|
lpr -P${PRINTER} ${.ALLSRC}
|
1997-05-07 19:53:28 +04:00
|
|
|
.endif
|
1997-03-25 00:54:12 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
spell: ${SRCS}
|
1997-12-21 18:40:37 +03:00
|
|
|
spell ${.ALLSRC} | sort | comm -23 - spell.ok > paper.spell
|
1997-05-07 23:09:47 +04:00
|
|
|
|
2001-11-02 08:21:47 +03:00
|
|
|
##### Pull in related .mk logic
|
1997-12-21 18:40:37 +03:00
|
|
|
.include <bsd.obj.mk>
|
2001-11-18 18:11:25 +03:00
|
|
|
.include <bsd.sys.mk>
|
2001-11-02 08:21:47 +03:00
|
|
|
|
|
|
|
${TARGETS}: # ensure existence
|