mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 02:20:59 +03:00
099dc9c2d2
Extend the Makefiles with an uninstall target to cleanly remove a package which was installed with 'make install'. Additionally, ensure a 'depmod -a' is run as part of the install to update the module dependency information.
40 lines
1.0 KiB
Makefile
40 lines
1.0 KiB
Makefile
subdir-m += spl
|
|
subdir-m += splat
|
|
|
|
INSTALL=/usr/bin/install
|
|
|
|
modules:
|
|
$(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` @KERNELMAKE_PARAMS@ $@
|
|
|
|
clean:
|
|
$(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` @KERNELMAKE_PARAMS@ $@
|
|
if [ -f @LINUX_SYMBOLS@ ]; then $(RM) @LINUX_SYMBOLS@; fi
|
|
if [ -f Module.markers ]; then $(RM) Module.markers; fi
|
|
|
|
modules_install:
|
|
# Install the kernel modules
|
|
$(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` \
|
|
INSTALL_MOD_PATH=$(DESTDIR) \
|
|
INSTALL_MOD_DIR=addon/spl $@
|
|
find ${DESTDIR}/lib/modules/ -name 'modules.*' | xargs ${RM}
|
|
sysmap=${DESTDIR}/boot/System.map-@LINUX_VERSION@; \
|
|
if [ -f $$sysmap ]; then \
|
|
depmod -ae -F $$sysmap @LINUX_VERSION@; \
|
|
fi
|
|
|
|
modules_uninstall:
|
|
# Uninstall the kernel modules
|
|
$(RM) -R ${DESTDIR}/lib/modules/@LINUX_VERSION@/addon/spl
|
|
|
|
distdir:
|
|
list='$(subdir-m)'; for subdir in $$list; do \
|
|
(find $$subdir -name '*.c' -o -name '*.h' | \
|
|
xargs /bin/cp -t $$distdir/$$subdir); \
|
|
done
|
|
|
|
distclean maintainer-clean: clean
|
|
install: modules_install
|
|
uninstall: modules_uninstall
|
|
all: modules
|
|
check:
|