source: trunk/packages/xen-common/xen-common/tools/xenstat/Makefile @ 34

Last change on this file since 34 was 34, checked in by hartmans, 17 years ago

Add xen and xen-common

File size: 356 bytes
Line 
1XEN_ROOT = ../..
2include $(XEN_ROOT)/tools/Rules.mk
3
4SUBDIRS :=
5SUBDIRS += libxenstat
6
7# This doesn't cross-compile (cross-compile environments rarely have curses)
8ifeq ($(XEN_COMPILE_ARCH),$(XEN_TARGET_ARCH))
9SUBDIRS += xentop
10endif
11
12.PHONY: all install clean
13
14all 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.