NetBSD/share/mk/bsd.doc.mk

82 lines
1.6 KiB
Makefile
Raw Normal View History

# $NetBSD: bsd.doc.mk,v 1.57 2002/02/11 21:14:58 mycroft 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
##### Default values
EQN?= eqn
GREMLIN?= grn
1993-03-21 12:45:37 +03:00
GRIND?= vgrind -f
INDXBIB?= indxbib
PIC?= pic
1993-03-21 12:45:37 +03:00
REFER?= refer
ROFF?= ${GROFF} -Tps
1993-03-21 12:45:37 +03:00
SOELIM?= soelim
TBL?= tbl
1993-03-21 12:45:37 +03:00
##### Build rules
1994-06-19 05:07:24 +04:00
.if !target(paper.ps)
paper.ps: ${SRCS}
${ROFF} ${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
${INSTALL_FILE} -o ${DOCOWN} -g ${DOCGRP} -m ${DOCMODE} \
${.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 !defined(UPDATE)
${_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