9875367b9a
MFC after: 25 days
31 lines
381 B
Makefile
31 lines
381 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR= \
|
|
ctfconvert \
|
|
ctfdump \
|
|
ctfmerge \
|
|
${_tests} \
|
|
${_zinject} \
|
|
${_zlook} \
|
|
${_zstreamdump} \
|
|
${_ztest}
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
_tests= tests
|
|
.endif
|
|
|
|
.if ${MK_ZFS} != "no"
|
|
_zinject= zinject
|
|
#_zlook= zlook
|
|
.if ${MK_LIBTHR} != "no"
|
|
_ztest= ztest
|
|
_zstreamdump = zstreamdump
|
|
.endif
|
|
.endif
|
|
|
|
SUBDIR_PARALLEL=
|
|
|
|
.include <bsd.subdir.mk>
|