subdir-m += avl subdir-m += nvpair subdir-m += unicode subdir-m += zcommon subdir-m += zfs modules: # Make the exported SPL symbols available to these modules. cp @SPL_OBJ@/@SPL_SYMBOLS@ . $(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` @KERNELMAKE_PARAMS@ $@ clean: $(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` @KERNELMAKE_PARAMS@ $@ if [ -f @SPL_SYMBOLS@ ]; then $(RM) @SPL_SYMBOLS@; fi if [ -f @LINUX_SYMBOLS@ ]; then $(RM) @LINUX_SYMBOLS@; fi if [ -f Module.markers ]; then $(RM) Module.markers; fi modules_install: $(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` \ INSTALL_MOD_PATH=$(DESTDIR) \ INSTALL_MOD_DIR=addon/zfs $@ find ${DESTDIR}/lib/modules/ -name 'modules.*' | xargs ${RM} # Install the required headers in to the kernel source destname=zfs-@ZFS_META_VERSION@/@LINUX_VERSION@; \ instdest=$(DESTDIR)/@prefix@/src/$$destname; \ (find . -mindepth 3 -name '*.h' | xargs -Ihdr sh -c \ "DEST=hdr && install -D hdr $$instdest/\$${DEST#*/*/*/}") || exit 1 distdir: distfiles=`find . -name '*.c' -o -name '*.h'`; \ for distfile in $$distfiles; do \ distpath=`dirname $$distdir/$$distfile`; \ (/bin/mkdir -p $$distpath && \ /bin/cp $$distfile $$distdir/$$distfile) || exit 1; \ done distclean maintainer-clean: clean install: modules_install all: modules check: