ia64/xen-unstable
view tools/xenstat/Makefile @ 6886:3233e7ecfa9f
merge?
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Thu Sep 15 07:38:53 2005 +0000 (2005-09-15) |
parents | 9af349b055e5 dd668f7527cb |
children | 06d84bf87159 |
line source
1 XEN_ROOT = ../..
2 include $(XEN_ROOT)/tools/Rules.mk
4 SUBDIRS :=
5 SUBDIRS += libxenstat
7 # This doesn't cross-compile (cross-compile environments rarely have curses)
8 ifeq ($(XEN_COMPILE_ARCH),$(XEN_TARGET_ARCH))
9 SUBDIRS += xentop
10 endif
12 .PHONY: all install clean
14 all install clean:
15 @set -e; for subdir in $(SUBDIRS); do \
16 $(MAKE) -C $$subdir $@; \
17 done