aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authoriap10@labyrinth.cl.cam.ac.uk <iap10@labyrinth.cl.cam.ac.uk>2004-06-21 06:48:59 +0000
committeriap10@labyrinth.cl.cam.ac.uk <iap10@labyrinth.cl.cam.ac.uk>2004-06-21 06:48:59 +0000
commitc925a6b87df8d5268b868b660fb857335ae7a870 (patch)
tree1186338519d81fe498957af88f34d6b7e7bfff10 /Makefile
parent173c76c64594480cd6ac7cebc23d7f4611ce858f (diff)
downloadxen-c925a6b87df8d5268b868b660fb857335ae7a870.tar.gz
xen-c925a6b87df8d5268b868b660fb857335ae7a870.tar.bz2
xen-c925a6b87df8d5268b868b660fb857335ae7a870.zip
bitkeeper revision 1.988.1.1 (40d684dbwUdI_vXbxca8SVxCnwHYlw)
Build and install linux modules in main Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index aed192802c..0703b546b7 100644
--- a/Makefile
+++ b/Makefile
@@ -54,10 +54,14 @@ linux_%_config:
# build and install to a specified install name
linux_%:
+ $(MAKE) -C linux-$(LINUX_VER)-xen ARCH=xen modules
+ $(MAKE) -C linux-$(LINUX_VER)-xen ARCH=xen INSTALL_NAME=$(subst linux_,$(LINUX_VER)-,$(@)) INSTALL_MOD_PATH=$(INSTALL_DIR) modules_install
$(MAKE) -C linux-$(LINUX_VER)-xen ARCH=xen INSTALL_NAME=$(subst linux_,$(LINUX_VER)-,$(@)) INSTALL_PATH=$(INSTALL_DIR) install
# shorthand with no siffix
linux:
+ $(MAKE) -C linux-$(LINUX_VER)-xen ARCH=xen modules
+ $(MAKE) -C linux-$(LINUX_VER)-xen ARCH=xen INSTALL_NAME=$(subst linux_,$(LINUX_VER)-,$(@)) INSTALL_MOD_PATH=$(INSTALL_DIR) modules_install
$(MAKE) -C linux-$(LINUX_VER)-xen ARCH=xen INSTALL_PATH=$(INSTALL_DIR) install
# build xen, the tools, and a domain 0 plus unprivileged linux-xen images,