MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / scripts / Makefile.modinst
blobc62d811e41866478f7cd4a095a29cad5afb81def
1 # ==========================================================================
2 # Installing modules
3 # ==========================================================================
5 PHONY := __modinst
6 __modinst:
8 include scripts/Kbuild.include
12 __modules := $(sort $(shell grep -h '\.ko' /dev/null $(wildcard $(MODVERDIR)/*.mod)))
13 modules := $(patsubst %.o,%.ko,$(wildcard $(__modules:.ko=.o)))
15 PHONY += $(modules)
16 __modinst: $(modules)
17         @:
19 quiet_cmd_modules_install = INSTALL $@
20       cmd_modules_install = mkdir -p $(2); cp $@ $(2) ; $(mod_strip_cmd) $(2)/$(notdir $@)
22 # Modules built outside the kernel source tree go into extra by default
23 INSTALL_MOD_DIR ?= extra
24 ext-mod-dir = $(INSTALL_MOD_DIR)$(subst $(KBUILD_EXTMOD),,$(@D))
26 #modinst_dir = $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D))
27 modinst_dir = $(subst $(dir $(TOPDIR))modules/,,$(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D)))
29 $(modules):
30         $(call cmd,modules_install,$(MODLIB)/$(modinst_dir))
33 # Declare the contents of the .PHONY variable as phony.  We keep that
34 # information in a variable se we can use it in if_changed and friends.
36 .PHONY: $(PHONY)