]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - scripts/Makefile.modinst
kbuild: change kbuild to not rely on incorrect GNU make behavior
[mirror_ubuntu-artful-kernel.git] / scripts / Makefile.modinst
CommitLineData
1da177e4
LT
1# ==========================================================================
2# Installing modules
3# ==========================================================================
4
4f193362 5PHONY := __modinst
1da177e4
LT
6__modinst:
7
8ec4b4ff 8include scripts/Kbuild.include
1da177e4
LT
9
10#
11
12__modules := $(sort $(shell grep -h '\.ko' /dev/null $(wildcard $(MODVERDIR)/*.mod)))
13modules := $(patsubst %.o,%.ko,$(wildcard $(__modules:.ko=.o)))
14
4f193362 15PHONY += $(modules)
1da177e4
LT
16__modinst: $(modules)
17 @:
18
19quiet_cmd_modules_install = INSTALL $@
20 cmd_modules_install = mkdir -p $(2); cp $@ $(2)
21
22# Modules built outside the kernel source tree go into extra by default
23INSTALL_MOD_DIR ?= extra
24ext-mod-dir = $(INSTALL_MOD_DIR)$(subst $(KBUILD_EXTMOD),,$(@D))
25
26modinst_dir = $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D))
27
28$(modules):
29 $(call cmd,modules_install,$(MODLIB)/$(modinst_dir))
4f193362
PS
30
31
32# Declare the contents of the .PHONY variable as phony. We keep that
33# information in a variable se we can use it in if_changed and friends.
34
35.PHONY: $(PHONY)