eb3f6a9e74
This introduces the WITHOUT_LIBKSE nob, and changes WITHOUT_LIBPTHREADS to mean with neither threading libs. Approved by: re(kensmith)
14 lines
204 B
Makefile
14 lines
204 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= ${_zdb}
|
|
|
|
.if ${MK_ZFS} != "no"
|
|
.if ${MK_LIBPTHREAD} != "no" && (${MK_LIBTHR} != "no" || ${MK_LIBKSE} != "no")
|
|
_zdb= zdb
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|