From: Fam Zheng Date: Mon, 10 Feb 2014 06:48:58 +0000 (+0800) Subject: Makefile: install modules with "make install" X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~1051^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e3be6f0ecc7e2c8e47ae7a49d523c50bc1bdf621;p=sdk%2Femulator%2Fqemu.git Makefile: install modules with "make install" Install all the modules to ${MODDIR}. Signed-off-by: Fam Zheng Signed-off-by: Paolo Bonzini --- diff --git a/Makefile b/Makefile index 07d1ed7..57d83a3 100644 --- a/Makefile +++ b/Makefile @@ -368,6 +368,12 @@ install-datadir install-localstatedir ifneq ($(TOOLS),) $(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)" endif +ifneq ($(CONFIG_MODULES),) + $(INSTALL_DIR) "$(DESTDIR)$(qemu_moddir)" + for s in $(patsubst %.mo,%$(DSOSUF),$(modules-m)); do \ + $(INSTALL_PROG) $(STRIP_OPT) $$s "$(DESTDIR)$(qemu_moddir)/$${s//\//-}"; \ + done +endif ifneq ($(HELPERS-y),) $(INSTALL_DIR) "$(DESTDIR)$(libexecdir)" $(INSTALL_PROG) $(STRIP_OPT) $(HELPERS-y) "$(DESTDIR)$(libexecdir)"