From patchwork Sat Jan 19 10:06:45 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 213814 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 8B0942C007B for ; Sat, 19 Jan 2013 21:07:48 +1100 (EST) Received: from localhost ([::1]:40143 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TwVL0-0006FO-ED for incoming@patchwork.ozlabs.org; Sat, 19 Jan 2013 05:07:46 -0500 Received: from eggs.gnu.org ([208.118.235.92]:50301) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TwVKH-0004dB-09 for qemu-devel@nongnu.org; Sat, 19 Jan 2013 05:07:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TwVKE-0005vt-U3 for qemu-devel@nongnu.org; Sat, 19 Jan 2013 05:07:00 -0500 Received: from mail-ee0-f52.google.com ([74.125.83.52]:48155) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TwVKE-0005vi-Nu for qemu-devel@nongnu.org; Sat, 19 Jan 2013 05:06:58 -0500 Received: by mail-ee0-f52.google.com with SMTP id b15so2080729eek.11 for ; Sat, 19 Jan 2013 02:06:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references; bh=rJJxZTNCpaYp/WkLIEtnF/nIGnSL1udqTkwEp5gpQKs=; b=h37FWyGDi3MhUE1dB6V/AsseBC5JT8NiZVB2aJZkE3hsfFVRSieXWQekwsyIhVy1Q0 FPRmrqIIpgHbS7/lOvKlu4w/2RnqfFmGJtKNSiqoTtNOpi2hItizhy8kL/6fGIv0yEmK bGwV6kmHhhFZYRYhQgEoPqYb/gGZca8PIx1xi7qaky1dOOcwYnj1CI9dPE2jwZR9h/CJ x6ApcTuKuKPnXi3L6BNs5W1aQcq43PbReChCsC1RgUUf167s+zW4cXsGNYJBYWDrZUHN BXDbRZnuZYDo8u3R9+4xYRHuR9ALdBs++8zpTzPgZFY6Oy0uh86iYpwX7wzplsKL1jjX 0K3g== X-Received: by 10.14.177.1 with SMTP id c1mr36544108eem.8.1358590017906; Sat, 19 Jan 2013 02:06:57 -0800 (PST) Received: from yakj.lan (93-34-179-137.ip50.fastwebnet.it. [93.34.179.137]) by mx.google.com with ESMTPS id q44sm11450581eep.5.2013.01.19.02.06.55 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sat, 19 Jan 2013 02:06:56 -0800 (PST) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Sat, 19 Jan 2013 11:06:45 +0100 Message-Id: <1358590008-1681-2-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.8.1 In-Reply-To: <1358590008-1681-1-git-send-email-pbonzini@redhat.com> References: <1358590008-1681-1-git-send-email-pbonzini@redhat.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 74.125.83.52 Cc: blauwirbel@gmail.com, afaerber@suse.de Subject: [Qemu-devel] [PATCH 1/4] build: move around libcacard-y definition 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 It is also needed if !CONFIG_SOFTMMU, unlike everything that surrounds it. Signed-off-by: Paolo Bonzini --- Makefile.objs | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Makefile.objs b/Makefile.objs index d465a72..3548f9b 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -34,6 +34,15 @@ CONFIG_REALLY_VIRTFS=y endif ###################################################################### +# smartcard + +libcacard-y += libcacard/cac.o libcacard/event.o +libcacard-y += libcacard/vcard.o libcacard/vreader.o +libcacard-y += libcacard/vcard_emul_nss.o +libcacard-y += libcacard/vcard_emul_type.o +libcacard-y += libcacard/card_7816.o + +###################################################################### # Target independent part of system emulation. The long term path is to # suppress *all* target specific code in case of system emulation, i.e. a # single QEMU executable should support all CPUs and machines. @@ -77,15 +86,6 @@ ifeq ($(CONFIG_SECCOMP),y) common-obj-y += qemu-seccomp.o endif -###################################################################### -# smartcard - -libcacard-y += libcacard/cac.o libcacard/event.o -libcacard-y += libcacard/vcard.o libcacard/vreader.o -libcacard-y += libcacard/vcard_emul_nss.o -libcacard-y += libcacard/vcard_emul_type.o -libcacard-y += libcacard/card_7816.o - common-obj-$(CONFIG_SMARTCARD_NSS) += $(libcacard-y) ######################################################################