aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/Makefile
diff options
context:
space:
mode:
authorHollis Blanchard <hollisb@us.ibm.com>2007-03-21 17:02:59 -0500
committerHollis Blanchard <hollisb@us.ibm.com>2007-03-21 17:02:59 -0500
commit06aaae8408dc2b372ab5740e0ca64cfa48a5168d (patch)
tree8a93a4760dc908639718cdf261c73abb9f94af8c /tools/libxc/Makefile
parentb09b06b6de79b5bc818a27ef54ab59c3593ec3a4 (diff)
downloadxen-06aaae8408dc2b372ab5740e0ca64cfa48a5168d.tar.gz
xen-06aaae8408dc2b372ab5740e0ca64cfa48a5168d.tar.bz2
xen-06aaae8408dc2b372ab5740e0ca64cfa48a5168d.zip
[LIBXC] Move domain builder hooks into arch-specific files and remove ifdefs.
Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
Diffstat (limited to 'tools/libxc/Makefile')
-rw-r--r--tools/libxc/Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/tools/libxc/Makefile b/tools/libxc/Makefile
index 3cb3b601c9..b290f132f8 100644
--- a/tools/libxc/Makefile
+++ b/tools/libxc/Makefile
@@ -48,11 +48,9 @@ GUEST_SRCS-y += $(LIBELF_SRCS)
GUEST_SRCS-y += xc_dom_core.c xc_dom_boot.c
GUEST_SRCS-y += xc_dom_elfloader.c
GUEST_SRCS-y += xc_dom_binloader.c
-GUEST_SRCS-y += xc_dom_x86.c
-GUEST_SRCS-y += xc_dom_ia64.c
-GUEST_SRCS-$(CONFIG_X86) += xc_dom_compat_linux.c
-GUEST_SRCS-$(CONFIG_IA64) += xc_dom_compat_linux.c
+GUEST_SRCS-$(CONFIG_X86) += xc_dom_x86.c xc_dom_compat_linux.c
+GUEST_SRCS-$(CONFIG_IA64) += xc_dom_ia64.c xc_dom_compat_linux.c
-include $(XEN_TARGET_ARCH)/Makefile