a71ea7bea0
It is useful to have zfs utilities and lib in a separate package as it allow users to create image that can support ZFS (i.e. not with WITHOUT_ZFS in src.conf set) without bloating the default image with all zfs tools (for example for jails). Differential Revision: https://reviews.freebsd.org/D36225
12 lines
193 B
Makefile
12 lines
193 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/cddl/compat/opensolaris/lib/libumem
|
|
|
|
PACKAGE= zfs
|
|
LIB= umem
|
|
SRCS= umem.c
|
|
WARNS?= 3
|
|
CFLAGS+= -I${SRCTOP}/cddl/compat/opensolaris/lib/libumem
|
|
|
|
.include <bsd.lib.mk>
|