]> git.proxmox.com Git - mirror_zfs-debian.git/blob - module/Makefile.in
Merge branch 'upstream' into kfreebsd
[mirror_zfs-debian.git] / module / Makefile.in
1 subdir-m += avl
2 subdir-m += nvpair
3 subdir-m += unicode
4 subdir-m += zcommon
5 subdir-m += zfs
6 subdir-m += zpios
7
8 modules:
9 @# Make the exported SPL symbols available to these modules.
10 @# They may be in the root of SPL_OBJ when building against
11 @# installed devel headers, or they may be in the module
12 @# subdirectory when building against the spl source tree.
13 @if [ -f @SPL_OBJ@/@SPL_SYMBOLS@ ]; then \
14 /bin/cp @SPL_OBJ@/@SPL_SYMBOLS@ .; \
15 elif [ -f @SPL_OBJ@/module/@SPL_SYMBOLS@ ]; then \
16 /bin/cp @SPL_OBJ@/module/@SPL_SYMBOLS@ .; \
17 else \
18 echo -e "\n" \
19 "*** Missing spl symbols ensure you have built the spl:\n" \
20 "*** - @SPL_OBJ@/@SPL_SYMBOLS@, or\n" \
21 "*** - @SPL_OBJ@/module/@SPL_SYMBOLS@\n"; \
22 exit 1; \
23 fi
24 $(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` @KERNELMAKE_PARAMS@ $@
25
26 clean:
27 @# Only cleanup the kernel build directories when CONFIG_KERNEL
28 @# is defined. This indicates that kernel modules should be built.
29 @CONFIG_KERNEL_TRUE@ $(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` @KERNELMAKE_PARAMS@ $@
30
31 if [ -f @SPL_SYMBOLS@ ]; then $(RM) @SPL_SYMBOLS@; fi
32 if [ -f @LINUX_SYMBOLS@ ]; then $(RM) @LINUX_SYMBOLS@; fi
33 if [ -f Module.markers ]; then $(RM) Module.markers; fi
34
35 modules_install:
36 @# Install the kernel modules
37 $(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` \
38 INSTALL_MOD_PATH=$(DESTDIR) \
39 INSTALL_MOD_DIR=addon/zfs $@
40 find $(DESTDIR)/lib/modules/ -name 'modules.*' | xargs $(RM)
41 sysmap=$(DESTDIR)/boot/System.map-@LINUX_VERSION@; \
42 if [ -f $$sysmap ]; then \
43 depmod -ae -F $$sysmap @LINUX_VERSION@; \
44 fi
45
46 modules_uninstall:
47 @# Uninstall the kernel modules
48 $(RM) -R $(DESTDIR)/lib/modules/@LINUX_VERSION@/addon/zfs
49
50 distdir:
51
52 distclean maintainer-clean: clean
53 install: modules_install
54 uninstall: modules_uninstall
55 all: modules
56 check: