]> git.proxmox.com Git - mirror_zfs.git/blob - module/Makefile.in
Resolve QAT issues with incompressible data
[mirror_zfs.git] / module / Makefile.in
1 subdir-m += avl
2 subdir-m += icp
3 subdir-m += lua
4 subdir-m += nvpair
5 subdir-m += unicode
6 subdir-m += zcommon
7 subdir-m += zfs
8
9 INSTALL_MOD_DIR ?= extra
10
11 ZFS_MODULE_CFLAGS += -std=gnu99 -Wno-declaration-after-statement
12 ZFS_MODULE_CFLAGS += @KERNEL_DEBUG_CFLAGS@
13 ZFS_MODULE_CFLAGS += -include @SPL_OBJ@/spl_config.h
14 ZFS_MODULE_CFLAGS += -include @abs_top_builddir@/zfs_config.h
15 ZFS_MODULE_CFLAGS += -I@abs_top_srcdir@/include -I@SPL@/include -I@SPL@
16
17 ZFS_MODULE_CPPFLAGS += -DHAVE_SPL -D_KERNEL
18 ZFS_MODULE_CPPFLAGS += @KERNEL_DEBUG_CPPFLAGS@
19
20 @CONFIG_QAT_TRUE@ZFS_MODULE_CFLAGS += -I@QAT_SRC@/include
21 @CONFIG_QAT_TRUE@KBUILD_EXTRA_SYMBOLS += @QAT_SYMBOLS@
22
23 export ZFS_MODULE_CFLAGS ZFS_MODULE_CPPFLAGS
24
25 SUBDIR_TARGETS = icp lua
26
27 modules:
28 @# Make the exported SPL symbols available to these modules.
29 @# They may be in the root of SPL_OBJ when building against
30 @# installed devel headers, or they may be in the module
31 @# subdirectory when building against the spl source tree.
32 @if [ -f @SPL_OBJ@/@SPL_SYMBOLS@ ]; then \
33 cp @SPL_OBJ@/@SPL_SYMBOLS@ .; \
34 elif [ -f @SPL_OBJ@/module/@SPL_SYMBOLS@ ]; then \
35 cp @SPL_OBJ@/module/@SPL_SYMBOLS@ .; \
36 else \
37 echo -e "\n" \
38 "*** Missing spl symbols ensure you have built the spl:\n" \
39 "*** - @SPL_OBJ@/@SPL_SYMBOLS@, or\n" \
40 "*** - @SPL_OBJ@/module/@SPL_SYMBOLS@\n"; \
41 exit 1; \
42 fi
43 list='$(SUBDIR_TARGETS)'; for targetdir in $$list; do \
44 $(MAKE) -C $$targetdir; \
45 done
46 $(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` @KERNEL_MAKE@ CONFIG_ZFS=m $@
47
48 clean:
49 @# Only cleanup the kernel build directories when CONFIG_KERNEL
50 @# is defined. This indicates that kernel modules should be built.
51 @CONFIG_KERNEL_TRUE@ $(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` @KERNEL_MAKE@ $@
52
53 if [ -f @SPL_SYMBOLS@ ]; then $(RM) @SPL_SYMBOLS@; fi
54 if [ -f @LINUX_SYMBOLS@ ]; then $(RM) @LINUX_SYMBOLS@; fi
55 if [ -f Module.markers ]; then $(RM) Module.markers; fi
56
57 modules_install:
58 @# Install the kernel modules
59 $(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` $@ \
60 INSTALL_MOD_PATH=$(DESTDIR)$(INSTALL_MOD_PATH) \
61 INSTALL_MOD_DIR=$(INSTALL_MOD_DIR) \
62 KERNELRELEASE=@LINUX_VERSION@
63 @# Remove extraneous build products when packaging
64 kmoddir=$(DESTDIR)$(INSTALL_MOD_PATH)/lib/modules/@LINUX_VERSION@; \
65 if [ -n "$(DESTDIR)" ]; then \
66 find $$kmoddir -name 'modules.*' | xargs $(RM); \
67 fi
68 sysmap=$(DESTDIR)$(INSTALL_MOD_PATH)/boot/System.map-@LINUX_VERSION@; \
69 if [ -f $$sysmap ]; then \
70 depmod -ae -F $$sysmap @LINUX_VERSION@; \
71 fi
72
73 modules_uninstall:
74 @# Uninstall the kernel modules
75 kmoddir=$(DESTDIR)$(INSTALL_MOD_PATH)/lib/modules/@LINUX_VERSION@
76 list='$(subdir-m)'; for subdir in $$list; do \
77 $(RM) -R $$kmoddir/$(INSTALL_MOD_DIR)/$$subdir; \
78 done
79
80 distdir:
81 list='$(subdir-m)'; for subdir in $$list; do \
82 (cd @top_srcdir@/module && find $$subdir -name '*.c' -o -name '*.h' -o -name '*.S' |\
83 xargs cp --parents -t $$distdir); \
84 done
85
86 distclean maintainer-clean: clean
87 install: modules_install
88 uninstall: modules_uninstall
89 all: modules
90 check: