mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-18 22:15:46 +01:00
c6063d0da8
from the latter.
17 lines
199 B
Makefile
17 lines
199 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR= ${_tests} ${_zfs} ${_zpool}
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
_tests= tests
|
|
.endif
|
|
|
|
.if ${MK_ZFS} != "no"
|
|
_zfs= zfs
|
|
_zpool= zpool
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|