b8ce141a40
This is a MFC of the following into stable/10: - r257097 Set up the /usr/tests hierarchy. - r257098 Add missing WITHOUTTESTS file. - r257100 Add a tests(7) manual page. - r257105 Disable WITHTESTS= for now. - r257848 Fix buildworld when WITHTESTS is enabled. - r257850 Subsume the functionality of MKATF into MKTESTS. - r257851 Handle the removal of the test suite when WITHOUTTESTS=yes. - r257852 Install category Kyuafiles from their category directories. - r258232 Install BSD.tests.mtree when MKTESTS is yes. Note that building with WITH_TESTS is still broken at this point (and hence why WITHOUT_TESTS is the set as the default). Subsequent pullups will fix the remaining issues.
34 lines
541 B
Makefile
34 lines
541 B
Makefile
# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= ${_IPv6} \
|
|
${_atf} \
|
|
legal \
|
|
${_llvm} \
|
|
${_roffdocs}
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
_atf= atf
|
|
.endif
|
|
|
|
.if ${MK_CLANG} != "no"
|
|
_llvm= llvm
|
|
.endif
|
|
|
|
.if ${MK_INET6} != "no"
|
|
_IPv6= IPv6
|
|
.endif
|
|
|
|
# FIXME this is not a real solution ...
|
|
.if ${MK_GROFF} != "no"
|
|
_roffdocs= papers psd smm usd
|
|
.endif
|
|
|
|
# Default output format for troff documents is ascii.
|
|
# To generate postscript versions of troff documents, use:
|
|
# make PRINTERDEVICE=ps
|
|
|
|
.include <bsd.subdir.mk>
|