diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2011-06-21 22:59:07 +0200 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2011-07-17 01:54:24 +0200 |
commit | 6dbd588a412ce1ac2a4ba640b418278e92a71890 (patch) | |
tree | c3e29a8c90a65ca7de92a6c1a6107eca96a687a6 /Makefile.objs | |
parent | 89b9ba661bd2d6155308f895ec075d813f0e129b (diff) |
xen: Clean up build system
Introduce CONFIG_XEN_BACKEND so that this new config solely controls the
target-independent backend build and CONFIG_XEN can focus on per-target
building.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'Makefile.objs')
-rw-r--r-- | Makefile.objs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.objs b/Makefile.objs index cea15e4a82..1635df6e2f 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -155,8 +155,8 @@ slirp-obj-y += tcp_subr.o tcp_timer.o udp.o bootp.o tftp.o common-obj-$(CONFIG_SLIRP) += $(addprefix slirp/, $(slirp-obj-y)) # xen backend driver support -common-obj-$(CONFIG_XEN) += xen_backend.o xen_devconfig.o -common-obj-$(CONFIG_XEN) += xen_console.o xenfb.o xen_disk.o xen_nic.o +common-obj-$(CONFIG_XEN_BACKEND) += xen_backend.o xen_devconfig.o +common-obj-$(CONFIG_XEN_BACKEND) += xen_console.o xenfb.o xen_disk.o xen_nic.o ###################################################################### # libuser |