mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 10:21:01 +03:00
1f2f46be95
FreeBSD needs a wrapper for handling zfs_cmd ioctls. In libzfs this is handled by zfs_ioctl. However, here we need to wrap the call directly. Reviewed-by: Allan Jude <allanjude@freebsd.org> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Matt Macy <mmacy@FreeBSD.org> Closes #9511
18 lines
371 B
Makefile
18 lines
371 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
lib_LTLIBRARIES = libzfs_core.la
|
|
|
|
USER_C = \
|
|
libzfs_core.c
|
|
|
|
nodist_libzfs_core_la_SOURCES = $(USER_C)
|
|
|
|
libzfs_core_la_LIBADD = \
|
|
$(top_builddir)/lib/libnvpair/libnvpair.la \
|
|
$(top_builddir)/lib/libuutil/libuutil.la \
|
|
$(top_builddir)/lib/libzutil/libzutil.la
|
|
|
|
libzfs_core_la_LDFLAGS = -version-info 1:0:0
|
|
|
|
EXTRA_DIST = $(USER_C)
|