ia64/xen-unstable
annotate tools/xenstat/Makefile @ 6488:48e94e358663
Cross-compilation fixes.
Signed-off-by: Michal Ostrowski <mostrows@watson.ibm.com>
Signed-off-by: Michal Ostrowski <mostrows@watson.ibm.com>
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Tue Aug 30 13:15:20 2005 +0000 (2005-08-30) |
parents | 9312a3e8a6f8 |
children | b043928b0873 |
rev | line source |
---|---|
josht@6334 | 1 XEN_ROOT = ../.. |
josht@6334 | 2 include $(XEN_ROOT)/tools/Rules.mk |
josht@6334 | 3 |
josht@6334 | 4 SUBDIRS := |
josht@6334 | 5 SUBDIRS += libxenstat |
kaf24@6488 | 6 |
kaf24@6488 | 7 # This doesn't cross-compile (cross-compile environments rarely have curses) |
kaf24@6488 | 8 ifeq ($(XEN_COMPILE_ARCH),$(XEN_TARGET_ARCH)) |
josht@6337 | 9 SUBDIRS += xentop |
kaf24@6488 | 10 endif |
josht@6334 | 11 |
josht@6334 | 12 .PHONY: all install clean |
josht@6334 | 13 |
josht@6334 | 14 all install clean: |
josht@6334 | 15 @set -e; for subdir in $(SUBDIRS); do \ |
josht@6334 | 16 $(MAKE) -C $$subdir $@; \ |
josht@6334 | 17 done |