freebsd-dev/share/doc/Makefile
Baptiste Daroussin cdc3795316 In preparation for the removal of the roff toolchain, disconnect the
roff documentation from the build.

Those documents will be added to the doc tree and distributed as PDF from
the documentation website. As they are valuable has history, but do not match
current FreeBSD

Further more, the ascii format we were using to distribute them is not really
accurate for such documents.

more details:
https://lists.freebsd.org/pipermail/freebsd-arch/2017-May/018211.html
2017-05-25 14:54:22 +00:00

33 lines
497 B
Makefile

# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
# $FreeBSD$
.include <src.opts.mk>
SUBDIR= ${_IPv6} \
${_atf} \
legal \
${_llvm} \
${_pjdfstest} \
${_roffdocs}
.if ${MK_TESTS} != "no"
_atf= atf
_pjdfstest= pjdfstest
.endif
.if ${MK_CLANG} != "no"
_llvm= llvm
.endif
.if ${MK_INET6} != "no"
_IPv6= IPv6
.endif
SUBDIR_PARALLEL=
# Default output format for troff documents is ascii.
# To generate postscript versions of troff documents, use:
# make PRINTERDEVICE=ps
.include <bsd.subdir.mk>