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