1e9e92665f
* Allow bsd.man.mk to be included separately. * Always include bsd.own.mk and bsd.obj.mk. * Include bsd.man.mk and bsd.nls.mk even if NOMAN or NONLS; just turn off building of the affected files instead. * Require bsd.subdir.mk to be included explicitly. (Will make appropriate changes to Makefiles shortly.)
72 lines
1.4 KiB
Makefile
72 lines
1.4 KiB
Makefile
# $NetBSD: bsd.doc.mk,v 1.34 1997/10/11 08:16:24 mycroft Exp $
|
|
# @(#)bsd.doc.mk 8.1 (Berkeley) 8/14/93
|
|
|
|
.if !target(__initialized__)
|
|
__initialized__:
|
|
.if exists(${.CURDIR}/../Makefile.inc)
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
.endif
|
|
.include <bsd.own.mk>
|
|
.include <bsd.obj.mk>
|
|
.MAIN: all
|
|
.endif
|
|
|
|
.PHONY: cleandoc docinstall print spell
|
|
realinstall: docinstall
|
|
clean cleandir: cleandoc
|
|
|
|
BIB?= bib
|
|
EQN?= eqn
|
|
GREMLIN?= grn
|
|
GRIND?= vgrind -f
|
|
INDXBIB?= indxbib
|
|
PIC?= pic
|
|
REFER?= refer
|
|
ROFF?= groff -M/usr/share/tmac ${MACROS} ${PAGES}
|
|
SOELIM?= soelim
|
|
TBL?= tbl
|
|
|
|
.if !target(all)
|
|
all: paper.ps
|
|
.endif
|
|
|
|
.if !target(paper.ps)
|
|
paper.ps: ${SRCS}
|
|
${ROFF} ${SRCS} > ${.TARGET}
|
|
.endif
|
|
|
|
.if !target(print)
|
|
print: paper.ps
|
|
lpr -P${PRINTER} paper.ps
|
|
.endif
|
|
|
|
cleandoc:
|
|
rm -f paper.* [eE]rrs mklog ${CLEANFILES}
|
|
|
|
.if !defined(NODOC)
|
|
FILES?= ${SRCS}
|
|
.for F in ${FILES} ${EXTRA} Makefile
|
|
docinstall:: ${DESTDIR}${DOCDIR}/${DIR}/${F}
|
|
.if !defined(UPDATE)
|
|
.PHONY: ${DESTDIR}${DOCDIR}/${DIR}/${F}
|
|
.endif
|
|
.if !defined(BUILD)
|
|
${DESTDIR}${DOCDIR}/${DIR}/${F}: .MADE
|
|
.endif
|
|
|
|
.PRECIOUS: ${DESTDIR}${DOCDIR}/${DIR}/${F}
|
|
${DESTDIR}${DOCDIR}/${DIR}/${F}: ${F}
|
|
${INSTALL} -c -o ${DOCOWN} -g ${DOCGRP} -m ${DOCMODE} ${.ALLSRC} \
|
|
${.TARGET}
|
|
.endfor
|
|
.endif
|
|
|
|
.if !target(docinstall)
|
|
docinstall::
|
|
.endif
|
|
|
|
spell: ${SRCS}
|
|
spell ${SRCS} | sort | comm -23 - spell.ok > paper.spell
|
|
|
|
depend includes lint obj tags:
|