1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-27 11:55:06 +00:00
freebsd/cddl/lib/Makefile
Ruslan Ermilov bcf72246c5 Don't build bits that depend on the pthreads support if a
system was configured without such support.

Approved by:	re (kensmith)
2007-10-01 18:23:24 +00:00

20 lines
269 B
Makefile

# $FreeBSD$
.include <bsd.own.mk>
SUBDIR= libavl \
libnvpair \
libumem \
libuutil \
${_libzfs} \
${_libzpool}
.if ${MK_ZFS} != "no"
_libzfs= libzfs
.if ${MK_LIBTHR} != "no" || ${MK_LIBPTHREAD} != "no"
_libzpool= libzpool
.endif
.endif
.include <bsd.subdir.mk>