freebsd-dev/cddl/usr.bin/Makefile
Ryan Moeller 0667273959 Ensure zstreamdump subdir can be visited
Reported by:	Thomas Laus
Sponsored by:	iXsystems, Inc.
2020-09-01 19:02:07 +00:00

28 lines
356 B
Makefile

# $FreeBSD$
.include <src.opts.mk>
SUBDIR= \
ctfconvert \
ctfdump \
ctfmerge \
${_zinject} \
${_zstream} \
${_zstreamdump} \
${_ztest}
SUBDIR.${MK_TESTS}+= tests
.if ${MK_ZFS} != "no"
_zinject= zinject
.if ${MK_LIBTHR} != "no"
_ztest= ztest
_zstream = zstream
_zstreamdump = zstreamdump
.endif
.endif
SUBDIR_PARALLEL=
.include <bsd.subdir.mk>