qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v10 6/8] Makefile: install modules with "make instal


From: Fam Zheng
Subject: [Qemu-devel] [PATCH v10 6/8] Makefile: install modules with "make install"
Date: Mon, 16 Sep 2013 14:50:25 +0800

Install all the modules to ${MODDIR}.

Signed-off-by: Fam Zheng <address@hidden>
---
 Makefile | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/Makefile b/Makefile
index 20167b8..a254f1c 100644
--- a/Makefile
+++ b/Makefile
@@ -363,6 +363,12 @@ install-datadir install-localstatedir
 ifneq ($(TOOLS),)
        $(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
 endif
+ifneq ($(CONFIG_MODULES),)
+       $(INSTALL_DIR) "$(DESTDIR)$(moddir)"
+       for s in $(patsubst %.mo,%$(DSOSUF),$(modules-m)); do \
+               $(INSTALL_PROG) $(STRIP_OPT) $$s 
"$(DESTDIR)$(moddir)/$${s//\//-}"; \
+       done
+endif
 ifneq ($(HELPERS-y),)
        $(INSTALL_DIR) "$(DESTDIR)$(libexecdir)"
        $(INSTALL_PROG) $(STRIP_OPT) $(HELPERS-y) "$(DESTDIR)$(libexecdir)"
-- 
1.8.3.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]