xref: /freebsd-12.1/cddl/usr.bin/Makefile (revision 4b330699)
1# $FreeBSD$
2
3.include <src.opts.mk>
4
5SUBDIR= \
6	ctfconvert \
7	ctfdump \
8	ctfmerge \
9	${_zinject} \
10	${_zlook} \
11	${_zstreamdump} \
12	${_ztest}
13
14SUBDIR.${MK_TESTS}+= tests
15
16.if ${MK_ZFS} != "no"
17_zinject= zinject
18#_zlook= zlook
19.if ${MK_LIBTHR} != "no"
20_ztest=	ztest
21_zstreamdump = zstreamdump
22.endif
23.endif
24
25SUBDIR_PARALLEL=
26
27.include <bsd.subdir.mk>
28