From patchwork Sun Aug 25 22:58:24 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?b?w4Frb3MgS292w6Fjcw==?= X-Patchwork-Id: 269754 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 88CAB2C00C4 for ; Mon, 26 Aug 2013 09:11:29 +1000 (EST) Received: from localhost ([::1]:47987 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDjSx-0005yB-Kp for incoming@patchwork.ozlabs.org; Sun, 25 Aug 2013 19:11:27 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54494) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDjHV-0004h9-QE for qemu-devel@nongnu.org; Sun, 25 Aug 2013 18:59:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VDjHQ-0006As-0Q for qemu-devel@nongnu.org; Sun, 25 Aug 2013 18:59:37 -0400 Received: from mail-ea0-x22b.google.com ([2a00:1450:4013:c01::22b]:39766) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDjHP-0006Ag-QN for qemu-devel@nongnu.org; Sun, 25 Aug 2013 18:59:31 -0400 Received: by mail-ea0-f171.google.com with SMTP id n15so1269662ead.16 for ; Sun, 25 Aug 2013 15:59:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=KSXnYTih1vg9cNEnqfyaa+qBDHRoXkwfh9AKhYQTJEI=; b=nLqdZMnYnMNXAOa6LzCnBYw8LxZZtU3AWIpgQqtm0jeAB2zoaZbJKk6Azfwl2qJAiN JzVGIQZyPk9foyFOS32XvDtDxVityMicCxn3rA2MHvERUyPWJ8Q0ZHL+lZieczfzAATe ASU7lDujU5cyXwraQhqCFP0s8GW+s33k08HEqSBRCSc/qOWkM1CXiTiDX4PZM4MMdm/0 5Y/kwH/GKrfWpJrNMK8/5+UiQ/G/TDtZiYiwarNmeZwTawVNQu76iELdGq4O3GIfZtX3 C91tIC7aKTWt61YI6G4vBEatwR7LKpEewlHU3f4xtThVBlrH1pEQeVIBVq4RL90gc+hM hJcA== X-Received: by 10.14.122.132 with SMTP id t4mr20845217eeh.20.1377471571043; Sun, 25 Aug 2013 15:59:31 -0700 (PDT) Received: from localhost.localdomain (4E5C0DBA.dsl.pool.telekom.hu. [78.92.13.186]) by mx.google.com with ESMTPSA id m54sm16988906eex.2.1969.12.31.16.00.00 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 25 Aug 2013 15:59:30 -0700 (PDT) From: =?UTF-8?q?=C3=81kos=20Kov=C3=A1cs?= To: qemu-devel@nongnu.org Date: Mon, 26 Aug 2013 00:58:24 +0200 Message-Id: <1377471536-12423-16-git-send-email-akoskovacs@gmx.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1377471536-12423-1-git-send-email-akoskovacs@gmx.com> References: <1377471536-12423-1-git-send-email-akoskovacs@gmx.com> MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4013:c01::22b Cc: =?UTF-8?q?=C3=81kos=20Kov=C3=A1cs?= Subject: [Qemu-devel] [PATCH 15/47] hw/lm32/Makefile.objs: Conditionally build lm32 and milkmyst 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 Signed-off-by: Ákos Kovács --- hw/lm32/Makefile.objs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/lm32/Makefile.objs b/hw/lm32/Makefile.objs index ea6418a..c394186 100644 --- a/hw/lm32/Makefile.objs +++ b/hw/lm32/Makefile.objs @@ -1,3 +1,3 @@ # LM32 boards -obj-y += lm32_boards.o -obj-y += milkymist.o +obj-$(CONFIG_LM32) += lm32_boards.o +obj-$(CONFIG_MILKYMIST) += milkymist.o