direct-io.hg
view netbsd-2.0-xen-sparse/Makefile @ 6467:f509c7303954
This patch export symbols in xenbus that is used by netfront
and blkfront so that vbd and vnif can be made to modules.
Signed-off-by: Xiaofeng Ling <xiaofeng.ling@intel.com>
and blkfront so that vbd and vnif can be made to modules.
Signed-off-by: Xiaofeng Ling <xiaofeng.ling@intel.com>
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Tue Aug 30 09:46:33 2005 +0000 (2005-08-30) |
parents | a01199a95070 |
children |
line source
1 #
2 #
3 #
5 .PHONY: clean config install netbsd
7 TOPDIR ?= $(shell pwd)
8 NETBSD_RELEASE ?= $(patsubst netbsd-%-xen%,%,$(notdir $(TOPDIR)))
9 NETBSD_VER ?= $(patsubst netbsd-%-xen%,%,$(notdir $(TOPDIR)))
10 NETBSD_KERNEL ?= XEN
12 clean:
13 @mkdir -p compile/$(NETBSD_KERNEL)
14 cd compile/$(NETBSD_KERNEL) && TOPDIR=$(TOPDIR) NETBSD_VER=$(NETBSD_VER) ../../nbmake-xen cleandir
16 config:
17 @mkdir -p compile/$(NETBSD_KERNEL)
18 cd compile/$(NETBSD_KERNEL) && TOPDIR=$(TOPDIR) NETBSD_VER=$(NETBSD_VER) ../../nbconfig-xen $(NETBSD_KERNEL)
20 netbsd:
21 cd compile/$(NETBSD_KERNEL) && TOPDIR=$(TOPDIR) NETBSD_VER=$(NETBSD_VER) ../../nbmake-xen dependall
23 install:
24 @mkdir -p $(dir $(INSTALL_PATH)/$(INSTALL_NAME))
25 install -c compile/$(NETBSD_KERNEL)/netbsd $(INSTALL_PATH)/$(INSTALL_NAME)