aboutsummaryrefslogtreecommitdiffstats
path: root/tools/misc/Makefile
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2010-06-07 15:45:56 +0100
committerKeir Fraser <keir.fraser@citrix.com>2010-06-07 15:45:56 +0100
commit6b0b6e01b967616c3d5318a230a117b44e6b705b (patch)
tree8870db8dd8630a615fefcb862950aaec1a34aa27 /tools/misc/Makefile
parente9bf40dbce3289dd55da01a7252b0eccab4cb68f (diff)
downloadxen-6b0b6e01b967616c3d5318a230a117b44e6b705b.tar.gz
xen-6b0b6e01b967616c3d5318a230a117b44e6b705b.tar.bz2
xen-6b0b6e01b967616c3d5318a230a117b44e6b705b.zip
tools: disable xen-hptool on ia64
xen-hptool cannot be built on ia64, because xen-hptool depends on xc_offline_page.c and xc_offline_page.c does not support ia64. This patch disables it on ia64. Signed-off-by: KUWAMURA Shin'ya <kuwa@jp.fujitsu.com>
Diffstat (limited to 'tools/misc/Makefile')
-rw-r--r--tools/misc/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/misc/Makefile b/tools/misc/Makefile
index 72ebcd6b57..cbd0e48e2b 100644
--- a/tools/misc/Makefile
+++ b/tools/misc/Makefile
@@ -10,8 +10,9 @@ CFLAGS += $(INCLUDES)
HDRS = $(wildcard *.h)
-TARGETS-y := xenperf xenpm xen-tmem-list-parse gtraceview gtracestat xenlockprof xen-hptool xenwatchdogd
+TARGETS-y := xenperf xenpm xen-tmem-list-parse gtraceview gtracestat xenlockprof xenwatchdogd
TARGETS-$(CONFIG_X86) += xen-detect xen-hvmctx
+TARGETS-$(CONFIG_MIGRATE) += xen-hptool
TARGETS := $(TARGETS-y)
SUBDIRS-$(CONFIG_LOMOUNT) += lomount
@@ -22,8 +23,9 @@ INSTALL_BIN-y := xencons
INSTALL_BIN-$(CONFIG_X86) += xen-detect
INSTALL_BIN := $(INSTALL_BIN-y)
-INSTALL_SBIN-y := xm xen-bugtool xen-python-path xend xenperf xsview xenpm xen-tmem-list-parse gtraceview gtracestat xenlockprof xen-hptool xenwatchdogd
+INSTALL_SBIN-y := xm xen-bugtool xen-python-path xend xenperf xsview xenpm xen-tmem-list-parse gtraceview gtracestat xenlockprof xenwatchdogd
INSTALL_SBIN-$(CONFIG_X86) += xen-hvmctx
+INSTALL_SBIN-$(CONFIG_MIGRATE) += xen-hptool
INSTALL_SBIN := $(INSTALL_SBIN-y)
.PHONY: all