mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
e89f1295d4
Adds a libzutil for utility functions that are common to libzfs and libzpool consumers (most of what was in libzfs_import.c). This removes the need for utilities to link against both libzpool and libzfs. Reviewed-by: Matthew Ahrens <mahrens@delphix.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Don Brady <don.brady@delphix.com> Closes #8050
33 lines
857 B
Makefile
33 lines
857 B
Makefile
SUBDIRS = linux spl sys
|
|
|
|
COMMON_H = \
|
|
$(top_srcdir)/include/zfeature_common.h \
|
|
$(top_srcdir)/include/zfs_comutil.h \
|
|
$(top_srcdir)/include/zfs_deleg.h \
|
|
$(top_srcdir)/include/zfs_fletcher.h \
|
|
$(top_srcdir)/include/zfs_namecheck.h \
|
|
$(top_srcdir)/include/zfs_prop.h
|
|
|
|
USER_H = \
|
|
$(top_srcdir)/include/libnvpair.h \
|
|
$(top_srcdir)/include/libuutil_common.h \
|
|
$(top_srcdir)/include/libuutil.h \
|
|
$(top_srcdir)/include/libuutil_impl.h \
|
|
$(top_srcdir)/include/libzfs.h \
|
|
$(top_srcdir)/include/libzfs_core.h \
|
|
$(top_srcdir)/include/libzfs_impl.h \
|
|
$(top_srcdir)/include/libzutil.h \
|
|
$(top_srcdir)/include/thread_pool.h
|
|
|
|
EXTRA_DIST = $(COMMON_H) $(USER_H)
|
|
|
|
if CONFIG_USER
|
|
libzfsdir = $(includedir)/libzfs
|
|
libzfs_HEADERS = $(COMMON_H) $(USER_H)
|
|
endif
|
|
|
|
if CONFIG_KERNEL
|
|
kerneldir = @prefix@/src/zfs-$(VERSION)/include
|
|
kernel_HEADERS = $(COMMON_H)
|
|
endif
|