From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58465) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V1KFY-0007M4-UB for qemu-devel@nongnu.org; Mon, 22 Jul 2013 13:50:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V1KFT-0001mN-N7 for qemu-devel@nongnu.org; Mon, 22 Jul 2013 13:50:20 -0400 From: Alexander Graf Date: Mon, 22 Jul 2013 19:50:06 +0200 Message-Id: <1374515411-43818-5-git-send-email-agraf@suse.de> In-Reply-To: <1374515411-43818-1-git-send-email-agraf@suse.de> References: <1374515411-43818-1-git-send-email-agraf@suse.de> Subject: [Qemu-devel] [PATCH 4/9] PlatBus: Hook up into Makefile system List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "qemu-ppc@nongnu.org list:PowerPC" Cc: Peter Maydell , qemu-devel Developers Hook up the platform bus helpers into our Makefile system, so that they get compiled. Signed-off-by: Alexander Graf --- hw/Makefile.objs | 1 + hw/platbus/Makefile.objs | 1 + 2 files changed, 2 insertions(+) create mode 100644 hw/platbus/Makefile.objs diff --git a/hw/Makefile.objs b/hw/Makefile.objs index 0243d6a..8535563 100644 --- a/hw/Makefile.objs +++ b/hw/Makefile.objs @@ -18,6 +18,7 @@ devices-dirs-$(CONFIG_SOFTMMU) += net/ devices-dirs-$(CONFIG_SOFTMMU) += nvram/ devices-dirs-$(CONFIG_SOFTMMU) += pci/ devices-dirs-$(CONFIG_PCI) += pci-bridge/ pci-host/ +devices-dirs-$(CONFIG_PLATBUS) += platbus/ devices-dirs-$(CONFIG_SOFTMMU) += scsi/ devices-dirs-$(CONFIG_SOFTMMU) += sd/ devices-dirs-$(CONFIG_SOFTMMU) += ssi/ diff --git a/hw/platbus/Makefile.objs b/hw/platbus/Makefile.objs new file mode 100644 index 0000000..73daee6 --- /dev/null +++ b/hw/platbus/Makefile.objs @@ -0,0 +1 @@ +common-obj-$(CONFIG_PLATBUS) += platbus.o device.o bridge.o -- 1.8.1.4