1# $FreeBSD$ 2 3.include <src.opts.mk> 4 5SUBDIR= \ 6 ctfconvert \ 7 ctfdump \ 8 ctfmerge \ 9 ${_tests} \ 10 ${_zinject} \ 11 ${_zlook} \ 12 ${_zstreamdump} \ 13 ${_ztest} 14 15.if ${MK_TESTS} != "no" 16_tests= tests 17.endif 18 19.if ${MK_ZFS} != "no" 20_zinject= zinject 21#_zlook= zlook 22.if ${MK_LIBTHR} != "no" 23_ztest= ztest 24_zstreamdump = zstreamdump 25.endif 26.endif 27 28SUBDIR_PARALLEL= 29 30.include <bsd.subdir.mk> 31