2010-08-26 22:22:58 +04:00
|
|
|
subdir-m += avl
|
|
|
|
subdir-m += nvpair
|
|
|
|
subdir-m += unicode
|
|
|
|
subdir-m += zcommon
|
|
|
|
subdir-m += zfs
|
2010-08-26 22:58:00 +04:00
|
|
|
subdir-m += zpios
|
2010-08-26 22:22:58 +04:00
|
|
|
|
|
|
|
modules:
|
2010-09-05 00:26:23 +04:00
|
|
|
@# Make the exported SPL symbols available to these modules.
|
|
|
|
@# They may be in the root of SPL_OBJ when building against
|
|
|
|
@# installed devel headers, or they may be in the module
|
|
|
|
@# subdirectory when building against the spl source tree.
|
|
|
|
@if [ -f @SPL_OBJ@/@SPL_SYMBOLS@ ]; then \
|
|
|
|
/bin/cp @SPL_OBJ@/@SPL_SYMBOLS@ .; \
|
|
|
|
elif [ -f @SPL_OBJ@/module/@SPL_SYMBOLS@ ]; then \
|
|
|
|
/bin/cp @SPL_OBJ@/module/@SPL_SYMBOLS@ .; \
|
|
|
|
else \
|
|
|
|
echo -e "\n" \
|
|
|
|
"*** Missing spl symbols ensure you have built the spl:\n" \
|
|
|
|
"*** - @SPL_OBJ@/@SPL_SYMBOLS@, or\n" \
|
|
|
|
"*** - @SPL_OBJ@/module/@SPL_SYMBOLS@\n"; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
2010-08-26 22:22:58 +04:00
|
|
|
$(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` @KERNELMAKE_PARAMS@ $@
|
|
|
|
|
|
|
|
clean:
|
2011-04-06 00:13:01 +04:00
|
|
|
@# 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@ $@
|
|
|
|
|
2010-08-26 22:22:58 +04:00
|
|
|
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:
|
2010-09-05 00:26:23 +04:00
|
|
|
@# Install the kernel modules
|
2010-08-26 22:22:58 +04:00
|
|
|
$(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` \
|
|
|
|
INSTALL_MOD_PATH=$(DESTDIR) \
|
|
|
|
INSTALL_MOD_DIR=addon/zfs $@
|
2011-07-20 08:44:07 +04:00
|
|
|
@# Remove extraneous build products when packaging
|
|
|
|
if [ -n "$(DESTDIR)" ]; then \
|
|
|
|
find $(DESTDIR)/lib/modules/@LINUX_VERSION@ \
|
|
|
|
-name 'modules.*' | xargs $(RM); \
|
|
|
|
fi
|
2010-09-05 00:26:23 +04:00
|
|
|
sysmap=$(DESTDIR)/boot/System.map-@LINUX_VERSION@; \
|
2010-08-26 22:22:58 +04:00
|
|
|
if [ -f $$sysmap ]; then \
|
|
|
|
depmod -ae -F $$sysmap @LINUX_VERSION@; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
modules_uninstall:
|
2010-09-05 00:26:23 +04:00
|
|
|
@# Uninstall the kernel modules
|
|
|
|
$(RM) -R $(DESTDIR)/lib/modules/@LINUX_VERSION@/addon/zfs
|
2010-08-26 22:22:58 +04:00
|
|
|
|
|
|
|
distdir:
|
|
|
|
|
|
|
|
distclean maintainer-clean: clean
|
|
|
|
install: modules_install
|
|
|
|
uninstall: modules_uninstall
|
|
|
|
all: modules
|
|
|
|
check:
|