2007-04-06 01:09:06 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2007-04-16 21:20:26 +00:00
|
|
|
.PATH: ${.CURDIR}/../../../compat/opensolaris/misc
|
|
|
|
.PATH: ${.CURDIR}/../../../sys/contrib/opensolaris/common/zfs
|
|
|
|
.PATH: ${.CURDIR}/../../../sys/contrib/opensolaris/uts/common/fs/zfs
|
|
|
|
.PATH: ${.CURDIR}/../../../contrib/opensolaris/lib/libzfs/common
|
2007-04-06 01:09:06 +00:00
|
|
|
|
|
|
|
LIB= zfs
|
|
|
|
DPADD= ${LIBUTIL}
|
|
|
|
LDADD= -lutil
|
|
|
|
|
2007-05-06 01:39:39 +00:00
|
|
|
SRCS= deviceid.c \
|
|
|
|
mnttab.c \
|
2007-04-16 21:20:26 +00:00
|
|
|
mkdirp.c \
|
|
|
|
zmount.c \
|
|
|
|
fsshare.c \
|
|
|
|
zone.c
|
2007-04-06 01:09:06 +00:00
|
|
|
|
2007-04-16 21:20:26 +00:00
|
|
|
SRCS+= zfs_namecheck.c \
|
|
|
|
zfs_prop.c \
|
|
|
|
libzfs_dataset.c \
|
|
|
|
libzfs_util.c \
|
|
|
|
libzfs_graph.c \
|
|
|
|
libzfs_mount.c \
|
|
|
|
libzfs_pool.c \
|
|
|
|
libzfs_changelist.c \
|
|
|
|
libzfs_config.c \
|
|
|
|
libzfs_import.c \
|
|
|
|
libzfs_status.c
|
2007-04-06 01:09:06 +00:00
|
|
|
|
2007-04-16 21:20:26 +00:00
|
|
|
CFLAGS+= -DZFS_NO_ACL
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../sbin/mount
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../cddl/lib/libumem
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../sys/compat/opensolaris
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../compat/opensolaris/include
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../compat/opensolaris/lib/libumem
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../contrib/opensolaris/lib/libzpool/common
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../sys/contrib/opensolaris/common/zfs
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../sys/contrib/opensolaris/uts/common/fs/zfs
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../sys/contrib/opensolaris/uts/common/sys
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../contrib/opensolaris/head
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../sys/contrib/opensolaris/uts/common
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../contrib/opensolaris/lib/libnvpair
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../contrib/opensolaris/lib/libuutil/common
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../contrib/opensolaris/lib/libzfs/common
|
2007-04-06 01:09:06 +00:00
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|