2006-03-16 21:43:34 +03:00
|
|
|
# $NetBSD: bsd.doc.mk,v 1.64 2006/03/16 18:43:34 jwise 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
|
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
|
|
|
##### Build rules
|
1994-06-19 05:07:24 +04:00
|
|
|
.if !target(paper.ps)
|
|
|
|
paper.ps: ${SRCS}
|
2003-10-21 14:01:19 +04:00
|
|
|
${_MKTARGET_FORMAT}
|
2003-07-10 14:33:58 +04:00
|
|
|
${TOOL_ROFF_PS} ${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
|
2004-01-29 04:48:45 +03:00
|
|
|
.PHONY: docinstall
|
|
|
|
|
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
|
2003-10-21 14:01:19 +04:00
|
|
|
${_MKTARGET_INSTALL}
|
2006-03-16 21:43:34 +03:00
|
|
|
${INSTALL_FILE} -o ${DOCOWN} -g ${DOCGRP} -m ${DOCMODE} \
|
2001-11-02 08:21:47 +03:00
|
|
|
${.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
|
|
|
|
|
2003-07-18 12:26:01 +04:00
|
|
|
.if ${MKUPDATE} == "no"
|
2002-02-12 00:14:58 +03:00
|
|
|
${_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
|
2004-01-29 04:48:45 +03:00
|
|
|
cleandoc: .PHONY
|
2001-11-02 08:21:47 +03:00
|
|
|
rm -f paper.* [eE]rrs mklog ${CLEANFILES}
|
|
|
|
|
|
|
|
##### Custom rules
|
|
|
|
.if !target(print)
|
2004-01-29 04:48:45 +03:00
|
|
|
print: .PHONY paper.ps
|
2001-11-02 08:21:47 +03:00
|
|
|
lpr -P${PRINTER} ${.ALLSRC}
|
1997-05-07 19:53:28 +04:00
|
|
|
.endif
|
1997-03-25 00:54:12 +03:00
|
|
|
|
2004-01-29 04:48:45 +03:00
|
|
|
spell: .PHONY ${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
|