mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
3cd33ffc3b
This is the upstream component of work that enables preliminary support for building Gentoo's ZFS packaging on other Linux systems via Gentoo Prefix. Signed-off-by: Richard Yao <richard.yao@clusterhq.com> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Issue #2641
22 lines
398 B
Makefile
22 lines
398 B
Makefile
SUBDIRS = fs
|
|
|
|
COMMON_H = \
|
|
$(top_srcdir)/include/sys/fm/protocol.h \
|
|
$(top_srcdir)/include/sys/fm/util.h
|
|
|
|
KERNEL_H =
|
|
|
|
USER_H =
|
|
|
|
EXTRA_DIST = $(COMMON_H) $(KERNEL_H) $(USER_H)
|
|
|
|
if CONFIG_USER
|
|
libzfsdir = $(includedir)/libzfs/sys/fm
|
|
libzfs_HEADERS = $(COMMON_H) $(USER_H)
|
|
endif
|
|
|
|
if CONFIG_KERNEL
|
|
kerneldir = @prefix@/src/zfs-$(VERSION)/include/sys/fm
|
|
kernel_HEADERS = $(COMMON_H) $(KERNEL_H)
|
|
endif
|