From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54062) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VPNqj-0006wd-CW for qemu-devel@nongnu.org; Thu, 26 Sep 2013 22:32:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VPNqd-0007BM-BB for qemu-devel@nongnu.org; Thu, 26 Sep 2013 22:32:09 -0400 Received: from mail-ee0-x236.google.com ([2a00:1450:4013:c00::236]:44934) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VPNqd-0007Ay-4q for qemu-devel@nongnu.org; Thu, 26 Sep 2013 22:32:03 -0400 Received: by mail-ee0-f54.google.com with SMTP id e53so905547eek.41 for ; Thu, 26 Sep 2013 19:32:02 -0700 (PDT) Sender: =?UTF-8?B?w4Frb3MgS292w6Fjcw==?= From: =?UTF-8?q?=C3=81kos=20Kov=C3=A1cs?= Date: Fri, 27 Sep 2013 04:30:34 +0200 Message-Id: <1380249092-4775-14-git-send-email-akoskovacs@gmx.com> In-Reply-To: <1380249092-4775-1-git-send-email-akoskovacs@gmx.com> References: <1380249092-4775-1-git-send-email-akoskovacs@gmx.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [v2 13/71] hw/sparc/Makefile.objs: CONFIG_* for sun4m and leon3 created List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?=C3=81kos=20Kov=C3=A1cs?= CONFIG_LEON3 added to default-configs/sparc-softmmu.mak. Signed-off-by: Ákos Kovács --- default-configs/sparc-softmmu.mak | 2 ++ hw/sparc/Makefile.objs | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/default-configs/sparc-softmmu.mak b/default-configs/sparc-softmmu.mak index 8fc93dd..8680d75 100644 --- a/default-configs/sparc-softmmu.mak +++ b/default-configs/sparc-softmmu.mak @@ -15,4 +15,6 @@ CONFIG_CS4231=y CONFIG_GRLIB=y CONFIG_STP2000=y CONFIG_ECCMEMCTL=y + CONFIG_SUN4M=y +CONFIG_LEON3=y diff --git a/hw/sparc/Makefile.objs b/hw/sparc/Makefile.objs index c987b5b..540cedc 100644 --- a/hw/sparc/Makefile.objs +++ b/hw/sparc/Makefile.objs @@ -1 +1,2 @@ -obj-y += sun4m.o leon3.o +obj-$(CONFIG_SUN4M) += sun4m.o +obj-$(CONFIG_LEON3) += leon3.o -- 1.8.1.2