c6063d0da8
from the latter.
30 lines
373 B
Makefile
30 lines
373 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR= \
|
|
ctfconvert \
|
|
ctfdump \
|
|
ctfmerge \
|
|
sgsmsg \
|
|
${_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
|
|
|
|
.include <bsd.subdir.mk>
|