From patchwork Mon Jul 22 17:50:06 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Graf X-Patchwork-Id: 260783 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 24D562C00A3 for ; Tue, 23 Jul 2013 04:04:27 +1000 (EST) Received: from localhost ([::1]:41970 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V1KHe-0001mA-Hn for incoming@patchwork.ozlabs.org; Mon, 22 Jul 2013 13:52:30 -0400 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 Received: from cantor2.suse.de ([195.135.220.15]:36291 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V1KFT-0001lt-ED; Mon, 22 Jul 2013 13:50:15 -0400 Received: from relay1.suse.de (unknown [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id C7023A0FED; Mon, 22 Jul 2013 19:50:14 +0200 (CEST) From: Alexander Graf To: "qemu-ppc@nongnu.org list:PowerPC" Date: Mon, 22 Jul 2013 19:50:06 +0200 Message-Id: <1374515411-43818-5-git-send-email-agraf@suse.de> X-Mailer: git-send-email 1.8.1.4 In-Reply-To: <1374515411-43818-1-git-send-email-agraf@suse.de> References: <1374515411-43818-1-git-send-email-agraf@suse.de> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x X-Received-From: 195.135.220.15 Cc: Peter Maydell , qemu-devel Developers Subject: [Qemu-devel] [PATCH 4/9] PlatBus: Hook up into Makefile system X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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