source:
trunk/packages/xen-common/xen-common/tools/xenstat/Makefile
@
34
Last change on this file since 34 was 34, checked in by hartmans, 18 years ago | |
---|---|
File size: 356 bytes |
Rev | Line | |
---|---|---|
[34] | 1 | XEN_ROOT = ../.. |
2 | include $(XEN_ROOT)/tools/Rules.mk | |
3 | ||
4 | SUBDIRS := | |
5 | SUBDIRS += libxenstat | |
6 | ||
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 | |
11 | ||
12 | .PHONY: all install clean | |
13 | ||
14 | all install clean: | |
15 | @set -e; for subdir in $(SUBDIRS); do \ | |
16 | $(MAKE) -C $$subdir $@; \ | |
17 | done |
Note: See TracBrowser
for help on using the repository browser.