3b7917d766
implementing some of them using existing ones. - Allow to compile ZFS on all archs and use atomic operations surrounded by global mutex on archs we don't have or can't have all atomic operations needed by ZFS.
18 lines
209 B
Makefile
18 lines
209 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= libavl \
|
|
libnvpair \
|
|
libumem \
|
|
libuutil \
|
|
${_libzfs} \
|
|
${_libzpool}
|
|
|
|
.if ${MK_ZFS} != "no"
|
|
_libzfs= libzfs
|
|
_libzpool= libzpool
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|