mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-29 04:21:26 +01:00
97759ccc71
Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a perl script. Sponsored by: Netflix
31 lines
442 B
Makefile
31 lines
442 B
Makefile
|
|
.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>
|