mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-25 18:59:33 +03:00
d1142fbffe
Rather than use a custom install target it is cleaner to define a 'kerneldir' and set 'kernel_HEADERS' appropriately. This allows us to leverage the standing configure install support. Additionally, I took this opertunity add the missing make files to the include subdirectories. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
22 lines
513 B
Makefile
22 lines
513 B
Makefile
SUBDIRS = fs linux rpc sharefs sys util vm
|
|
|
|
COMMON_H =
|
|
|
|
KERNEL_H = \
|
|
$(top_srcdir)/include/splat-ctl.h \
|
|
$(top_srcdir)/include/spl-ctl.h \
|
|
$(top_srcdir)/include/spl-debug.h \
|
|
$(top_srcdir)/include/spl-device.h \
|
|
$(top_srcdir)/include/spl-trace.h \
|
|
$(top_srcdir)/include/strings.h \
|
|
$(top_srcdir)/include/unistd.h
|
|
|
|
USER_H =
|
|
|
|
EXTRA_DIST = $(COMMON_H) $(KERNEL_H) $(USER_H)
|
|
|
|
if CONFIG_KERNEL
|
|
kerneldir = /usr/src/spl-$(SPL_META_VERSION)-$(SPL_META_RELEASE)/$(LINUX_VERSION)
|
|
kernel_HEADERS = $(KERNEL_H)
|
|
endif
|