]> git.proxmox.com Git - mirror_zfs.git/blobdiff - module/Makefile.in
Prevent `make distclean` removing config/config.rpath
[mirror_zfs.git] / module / Makefile.in
index d4e62e152193c28eb3afd65a3249e74cf229b65e..935bd26630625e598da67739e74d8b9079175ebf 100644 (file)
@@ -1,26 +1,49 @@
+subdir-m += avl
+subdir-m += icp
+subdir-m += lua
+subdir-m += nvpair
 subdir-m += spl
-subdir-m += splat
+subdir-m += unicode
+subdir-m += zcommon
+subdir-m += zfs
 
 INSTALL_MOD_DIR ?= extra
 
-SPL_MODULE_CFLAGS  = -I@abs_top_srcdir@/include
-SPL_MODULE_CFLAGS += -include @abs_top_builddir@/spl_config.h
-export SPL_MODULE_CFLAGS
+ZFS_MODULE_CFLAGS += -std=gnu99 -Wno-declaration-after-statement
+ZFS_MODULE_CFLAGS += @KERNEL_DEBUG_CFLAGS@
+ZFS_MODULE_CFLAGS += -include @abs_top_builddir@/zfs_config.h
+ZFS_MODULE_CFLAGS += -I@abs_top_srcdir@/include/spl
+ZFS_MODULE_CFLAGS += -I@abs_top_srcdir@/include
+
+ZFS_MODULE_CPPFLAGS += -D_KERNEL
+ZFS_MODULE_CPPFLAGS += @KERNEL_DEBUG_CPPFLAGS@
+
+@CONFIG_QAT_TRUE@ZFS_MODULE_CFLAGS += -I@QAT_SRC@/include
+@CONFIG_QAT_TRUE@KBUILD_EXTRA_SYMBOLS += @QAT_SYMBOLS@
+
+export ZFS_MODULE_CFLAGS ZFS_MODULE_CPPFLAGS
+
+SUBDIR_TARGETS = icp lua
 
 modules:
-       $(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` @KERNELMAKE_PARAMS@ CONFIG_SPL=m $@
+       list='$(SUBDIR_TARGETS)'; for targetdir in $$list; do \
+               $(MAKE) -C $$targetdir; \
+       done
+       $(MAKE) -C @LINUX_OBJ@ M=`pwd` @KERNEL_MAKE@ CONFIG_ZFS=m $@
 
 clean:
        @# Only cleanup the kernel build directories when CONFIG_KERNEL
        @# is defined.  This indicates that kernel modules should be built.
-@CONFIG_KERNEL_TRUE@   $(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` @KERNELMAKE_PARAMS@ $@
+@CONFIG_KERNEL_TRUE@   $(MAKE) -C @LINUX_OBJ@ M=`pwd` @KERNEL_MAKE@ $@
 
        if [ -f @LINUX_SYMBOLS@ ]; then $(RM) @LINUX_SYMBOLS@; fi
        if [ -f Module.markers ]; then $(RM) Module.markers; fi
 
+       find . -name '*.ur-safe' -type f -print | xargs $(RM)
+
 modules_install:
        @# Install the kernel modules
-       $(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` $@ \
+       $(MAKE) -C @LINUX_OBJ@ M=`pwd` $@ \
                INSTALL_MOD_PATH=$(DESTDIR)$(INSTALL_MOD_PATH) \
                INSTALL_MOD_DIR=$(INSTALL_MOD_DIR) \
                KERNELRELEASE=@LINUX_VERSION@
@@ -43,8 +66,8 @@ modules_uninstall:
 
 distdir:
        list='$(subdir-m)'; for subdir in $$list; do \
-               (find @top_srcdir@/module/$$subdir -name '*.c' -o -name '*.h' |\
-                xargs /bin/cp -t $$distdir/$$subdir); \
+               (cd @top_srcdir@/module && find $$subdir -name '*.c' -o -name '*.h' -o -name '*.S' |\
+               xargs cp --parents -t $$distdir); \
        done
 
 distclean maintainer-clean: clean