| version 1.143, 2001/10/24 03:21:20 |
version 1.144, 2001/10/29 19:48:35 |
| Line 172 dependall-distrib depend-distrib all-dis |
|
| Line 172 dependall-distrib depend-distrib all-dis |
|
| .include "${.CURDIR}/share/mk/bsd.subdir.mk" |
.include "${.CURDIR}/share/mk/bsd.subdir.mk" |
| |
|
| _M:= -m ${.CURDIR}/share/mk |
_M:= -m ${.CURDIR}/share/mk |
| |
|
| |
# Rules for building the BUILDING.* documentation files. |
| |
|
| |
build-docs: ${.CURDIR}/BUILDING.txt ${.CURDIR}/BUILDING.html |
| |
|
| |
.SUFFIXES: .mdoc .html .txt |
| |
|
| |
.mdoc.html: ${.CURDIR}/Makefile |
| |
groff -mdoc2html -Tlatin1 -P-b -P-u -P-o -ww -mtty-char $< >$@ |
| |
|
| |
# The awk expression changes line endings from LF to CR-LF to make |
| |
# this readable on many more platforms than just Un*x. |
| |
.mdoc.txt: ${.CURDIR}/Makefile |
| |
groff -mdoc -Tascii -P-b -P-u -P-o $< | \ |
| |
awk 'BEGIN{ORS="\r\n"}{print}' >$@ |