direct-io.hg
changeset 1514:25ec432dcf26
bitkeeper revision 1.988.1.1 (40d684dbwUdI_vXbxca8SVxCnwHYlw)
Build and install linux modules in main Makefile
Build and install linux modules in main Makefile
author | iap10@labyrinth.cl.cam.ac.uk |
---|---|
date | Mon Jun 21 06:48:59 2004 +0000 (2004-06-21) |
parents | 3bcb3ae4e038 |
children | 9e12dfe14287 |
files | Makefile |
line diff
1.1 --- a/Makefile Sun Jun 20 13:51:29 2004 +0000 1.2 +++ b/Makefile Mon Jun 21 06:48:59 2004 +0000 1.3 @@ -54,10 +54,14 @@ linux_%_config: 1.4 1.5 # build and install to a specified install name 1.6 linux_%: 1.7 + $(MAKE) -C linux-$(LINUX_VER)-xen ARCH=xen modules 1.8 + $(MAKE) -C linux-$(LINUX_VER)-xen ARCH=xen INSTALL_NAME=$(subst linux_,$(LINUX_VER)-,$(@)) INSTALL_MOD_PATH=$(INSTALL_DIR) modules_install 1.9 $(MAKE) -C linux-$(LINUX_VER)-xen ARCH=xen INSTALL_NAME=$(subst linux_,$(LINUX_VER)-,$(@)) INSTALL_PATH=$(INSTALL_DIR) install 1.10 1.11 # shorthand with no siffix 1.12 linux: 1.13 + $(MAKE) -C linux-$(LINUX_VER)-xen ARCH=xen modules 1.14 + $(MAKE) -C linux-$(LINUX_VER)-xen ARCH=xen INSTALL_NAME=$(subst linux_,$(LINUX_VER)-,$(@)) INSTALL_MOD_PATH=$(INSTALL_DIR) modules_install 1.15 $(MAKE) -C linux-$(LINUX_VER)-xen ARCH=xen INSTALL_PATH=$(INSTALL_DIR) install 1.16 1.17 # build xen, the tools, and a domain 0 plus unprivileged linux-xen images,