ia64/xen-unstable
view tools/Makefile @ 4895:24dfd18ea63e
bitkeeper revision 1.1159.258.120 (42848bfe8kMyWWcBA64rq7h7l7AyoA)
Shadow code bug fix (found by Ian) that was breaking refcounts, and subsequently
causing migration problems.
Shadow code bug fix (found by Ian) that was breaking refcounts, and subsequently
causing migration problems.
author | mafetter@fleming.research |
---|---|
date | Fri May 13 11:14:06 2005 +0000 (2005-05-13) |
parents | 324645337353 |
children | 3498bafc832f 0dc3b8b8c298 |
line source
1 XEN_ROOT = ../
2 include $(XEN_ROOT)/tools/Rules.mk
4 SUBDIRS :=
5 SUBDIRS += libxutil
6 SUBDIRS += libxc
7 SUBDIRS += misc
8 SUBDIRS += examples
9 SUBDIRS += xentrace
10 SUBDIRS += python
11 SUBDIRS += xfrd
13 .PHONY: all install clean check check_clean
15 all: check
16 @set -e; for subdir in $(SUBDIRS); do \
17 $(MAKE) -C $$subdir $@; \
18 done
20 install: check
21 @set -e; for subdir in $(SUBDIRS); do \
22 $(MAKE) -C $$subdir $@; \
23 done
25 clean: check_clean
26 @set -e; for subdir in $(SUBDIRS); do \
27 $(MAKE) -C $$subdir $@; \
28 done
30 check:
31 $(MAKE) -C check
33 check_clean:
34 $(MAKE) -C check clean