2007-04-06 01:09:06 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
.include "${.CURDIR}/../../../sys/contrib/opensolaris/uts/common/Makefile.files"
|
|
|
|
|
|
|
|
# ZFS_COMMON_SRCS
|
2007-04-16 21:20:26 +00:00
|
|
|
.PATH: ${.CURDIR}/../../../sys/contrib/opensolaris/uts/common/fs/zfs
|
2007-04-06 01:09:06 +00:00
|
|
|
# ZFS_SHARED_SRCS
|
2007-04-16 21:20:26 +00:00
|
|
|
.PATH: ${.CURDIR}/../../../sys/contrib/opensolaris/common/zfs
|
2007-04-06 01:09:06 +00:00
|
|
|
# KERNEL_SRCS
|
2007-04-16 21:20:26 +00:00
|
|
|
.PATH: ${.CURDIR}/../../../contrib/opensolaris/lib/libzpool/common
|
2007-04-06 01:09:06 +00:00
|
|
|
# LIST_SRCS
|
2007-04-16 21:20:26 +00:00
|
|
|
.PATH: ${.CURDIR}/../../../sys/contrib/opensolaris/uts/common/os
|
2007-04-06 01:09:06 +00:00
|
|
|
# ATOMIC_SRCS
|
2007-06-08 12:35:47 +00:00
|
|
|
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "ia64"
|
2007-04-16 21:20:26 +00:00
|
|
|
.PATH: ${.CURDIR}/../../../sys/contrib/opensolaris/common/atomic/${MACHINE_ARCH}
|
2007-06-08 12:35:47 +00:00
|
|
|
ATOMIC_SRCS= atomic.S
|
|
|
|
.else
|
|
|
|
.PATH: ${.CURDIR}/../../../sys/compat/opensolaris/kern
|
|
|
|
ATOMIC_SRCS= opensolaris_atomic.c
|
|
|
|
.endif
|
2007-04-16 21:20:26 +00:00
|
|
|
|
|
|
|
LIB= zpool
|
|
|
|
|
|
|
|
ZFS_COMMON_SRCS= ${ZFS_COMMON_OBJS:C/.o$/.c/} vdev_file.c
|
|
|
|
ZFS_SHARED_SRCS= ${ZFS_SHARED_OBJS:C/.o$/.c/}
|
|
|
|
KERNEL_SRCS= kernel.c taskq.c util.c
|
|
|
|
LIST_SRCS= list.c
|
|
|
|
|
|
|
|
SRCS= ${ZFS_COMMON_SRCS} ${ZFS_SHARED_SRCS} \
|
|
|
|
${KERNEL_SRCS} ${LIST_SRCS} ${ATOMIC_SRCS}
|
|
|
|
|
|
|
|
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/uts/common/sys
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../sys/contrib/opensolaris/uts/common/fs/zfs
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../sys/contrib/opensolaris/common/zfs
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../sys/contrib/opensolaris/uts/common
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../contrib/opensolaris/head
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../cddl/lib/libumem
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../contrib/opensolaris/lib/libnvpair
|
|
|
|
|
2007-04-17 15:52:37 +00:00
|
|
|
DPADD= ${LIBPTHREAD} ${LIBZ}
|
|
|
|
LDADD= -lpthread -lz
|
2007-04-06 01:09:06 +00:00
|
|
|
|
|
|
|
# atomic.S doesn't like profiling.
|
|
|
|
NO_PROFILE=
|
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|