mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +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.
29 lines
957 B
Makefile
29 lines
957 B
Makefile
# All headers are referenced by this top level Makefile.am are
|
|
# noinst_HEADERS because they are not installed in the usual include
|
|
# location. We do not want to be using $includedir for this.
|
|
# Installation is handled by the custom install-data-local rule.
|
|
noinst_HEADERS = *.h
|
|
noinst_HEADERS += fs/*.h
|
|
noinst_HEADERS += linux/*.h
|
|
noinst_HEADERS += rpc/*.h
|
|
noinst_HEADERS += sharefs/*.h
|
|
noinst_HEADERS += sys/fm/*.h
|
|
noinst_HEADERS += sys/fs/*.h
|
|
noinst_HEADERS += sys/sysevent/*.h
|
|
noinst_HEADERS += sys/*.h
|
|
noinst_HEADERS += util/*.h
|
|
noinst_HEADERS += vm/*.h
|
|
|
|
install-data-local:
|
|
destname=spl-$(SPL_META_VERSION)/$(LINUX_VERSION); \
|
|
instdest=$(DESTDIR)/usr/src/$$destname; \
|
|
instfiles=`find . -name '*.h'`; \
|
|
for instfile in $$instfiles; do \
|
|
$(INSTALL) -D $$instfile $$instdest/$$instfile; \
|
|
done
|
|
|
|
uninstall-local:
|
|
destname=spl-$(SPL_META_VERSION)/$(LINUX_VERSION); \
|
|
instdest=$(DESTDIR)/usr/src/$$destname; \
|
|
$(RM) -R $$instdest
|