NetBSD/share/mk/bsd.doc.mk

73 lines
1.5 KiB
Makefile
Raw Normal View History

# $NetBSD: bsd.doc.mk,v 1.62 2003/10/21 10:01:21 lukem Exp $
# @(#)bsd.doc.mk 8.1 (Berkeley) 8/14/93
.include <bsd.init.mk>
##### Basic targets
1997-05-07 20:35:44 +04:00
.PHONY: cleandoc docinstall print spell
clean: cleandoc
realinstall: docinstall
1997-05-07 00:54:31 +04:00
##### Build rules
1994-06-19 05:07:24 +04:00
.if !target(paper.ps)
paper.ps: ${SRCS}
${_MKTARGET_FORMAT}
${TOOL_ROFF_PS} ${MACROS} ${PAGES} ${.ALLSRC} > ${.TARGET}
1994-06-19 05:07:24 +04:00
.endif
.if ${MKSHARE} != "no"
realall: paper.ps
1993-03-21 12:45:37 +03:00
.endif
##### Install rules
docinstall:: # ensure existence
.if ${MKDOC} != "no"
2000-06-06 13:53:29 +04:00
__docinstall: .USE
${_MKTARGET_INSTALL}
${INSTALL_FILE} -o ${DOCOWN} -g ${DOCGRP} -m ${DOCMODE} ${SYSPKGTAG} \
${.ALLSRC} ${.TARGET}
FILES?= ${SRCS}
2000-06-06 13:53:29 +04:00
.for F in Makefile ${FILES:O:u} ${EXTRA}
_F:= ${DESTDIR}${DOCDIR}/${DIR}/${F} # installed path
.if ${MKUPDATE} == "no"
${_F}! ${F} __docinstall # install rule
.if !defined(BUILD) && !make(all) && !make(${F})
${_F}! .MADE # no build at install
.endif
.else
${_F}: ${F} __docinstall # install rule
.if !defined(BUILD) && !make(all) && !make(${F})
${_F}: .MADE # no build at install
.endif
.endif
docinstall:: ${_F}
.PRECIOUS: ${_F} # keep if install fails
.endfor
.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
1993-03-21 12:45:37 +03:00
spell: ${SRCS}
spell ${.ALLSRC} | sort | comm -23 - spell.ok > paper.spell
1997-05-07 23:09:47 +04:00
##### Pull in related .mk logic
.include <bsd.obj.mk>
.include <bsd.sys.mk>
${TARGETS}: # ensure existence