fa8093473b
pjdfstest execution is opt-in and must be done as root due to some of the assumptions made by the test suite and lack of error checking in the non-root case A description of how to execute pjdfstest with kyua is provided in share/pjdfstest/README Phabric: D824 (an earlier prototype patch) MFC after: 1 month Relnotes: yes Sponsored by: EMC / Isilon Storage Division
36 lines
581 B
Makefile
36 lines
581 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
|
|
|
|
# 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>
|