1SUBDIRS = sys os
2
3COMMON_H = \
4	cityhash.h \
5	zfeature_common.h \
6	zfs_comutil.h \
7	zfs_deleg.h \
8	zfs_fletcher.h \
9	zfs_namecheck.h \
10	zfs_prop.h
11
12USER_H = \
13	libnvpair.h \
14	libuutil_common.h \
15	libuutil.h \
16	libuutil_impl.h \
17	libzfs.h \
18	libzfsbootenv.h \
19	libzfs_core.h \
20	libzfs_impl.h \
21	libzutil.h \
22	thread_pool.h
23
24if CONFIG_USER
25libzfsdir = $(includedir)/libzfs
26libzfs_HEADERS = $(COMMON_H) $(USER_H)
27endif
28
29if CONFIG_KERNEL
30if BUILD_LINUX
31kerneldir = @prefix@/src/zfs-$(VERSION)/include
32kernel_HEADERS = $(COMMON_H)
33endif
34endif
35