source: trunk/packages/xen-3.1/xen-3.1/tools/blktap/Makefile @ 34

Last change on this file since 34 was 34, checked in by hartmans, 17 years ago

Add xen and xen-common

File size: 500 bytes
Line 
1XEN_ROOT = ../..
2include $(XEN_ROOT)/tools/Rules.mk
3
4SUBDIRS-y :=
5SUBDIRS-y += lib
6SUBDIRS-y += drivers
7
8.PHONY: all
9all: build
10
11.PHONY: build
12build:
13        @set -e; for subdir in $(SUBDIRS-y); do \
14        $(MAKE) -C $$subdir all;       \
15                done
16
17.PHONY: install
18install:
19        @set -e; for subdir in $(SUBDIRS-y); do \
20                $(MAKE) -C $$subdir install; \
21        done
22
23.PHONY: clean
24clean:
25        rm -rf *.a *.so *.o *.rpm $(LIB) *~ $(DEPS) TAGS
26        @set -e; for subdir in $(SUBDIRS-y); do \
27        $(MAKE) -C $$subdir clean;       \
28                done
Note: See TracBrowser for help on using the repository browser.