debuggers.hg
annotate tools/xenstat/Makefile @ 22848:6341fe0f4e5a
Added tag 4.1.0-rc2 for changeset 9dca60d88c63
author | Keir Fraser <keir@xen.org> |
---|---|
date | Tue Jan 25 14:06:55 2011 +0000 (2011-01-25) |
parents | b726d80d8211 |
children |
rev | line source |
---|---|
josht@6357 | 1 XEN_ROOT = ../.. |
josht@6357 | 2 include $(XEN_ROOT)/tools/Rules.mk |
josht@6357 | 3 |
josht@6357 | 4 SUBDIRS := |
josht@6357 | 5 SUBDIRS += libxenstat |
kaf24@6508 | 6 |
kaf24@6508 | 7 # This doesn't cross-compile (cross-compile environments rarely have curses) |
kaf24@6508 | 8 ifeq ($(XEN_COMPILE_ARCH),$(XEN_TARGET_ARCH)) |
keir@17222 | 9 ifeq ($(wildcard /usr/include/curses.h),/usr/include/curses.h) |
josht@6360 | 10 SUBDIRS += xentop |
kaf24@6508 | 11 endif |
keir@17222 | 12 endif |
josht@6357 | 13 |
josht@6357 | 14 .PHONY: all install clean |
josht@6357 | 15 |
keir@17310 | 16 all install clean: %: subdirs-% |