From patchwork Sat Jan 12 17:35:25 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 211520 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 3378D2C0101 for ; Sun, 13 Jan 2013 04:38:11 +1100 (EST) Received: from localhost ([::1]:38546 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tu521-0004EX-Bo for incoming@patchwork.ozlabs.org; Sat, 12 Jan 2013 12:38:09 -0500 Received: from eggs.gnu.org ([208.118.235.92]:50893) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tu50f-0002c4-Km for qemu-devel@nongnu.org; Sat, 12 Jan 2013 12:36:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tu50a-0000Q8-P9 for qemu-devel@nongnu.org; Sat, 12 Jan 2013 12:36:45 -0500 Received: from mail-wg0-f52.google.com ([74.125.82.52]:57038) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tu50a-0000Q4-IV for qemu-devel@nongnu.org; Sat, 12 Jan 2013 12:36:40 -0500 Received: by mail-wg0-f52.google.com with SMTP id 12so1301961wgh.31 for ; Sat, 12 Jan 2013 09:36:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:from:to:subject:date:message-id:x-mailer :in-reply-to:references; bh=k+iHcoWOLbGV1v5JIRalypzy/CPCSm7XjVutHZgCj4o=; b=o+WGywW0UbMYrIyZtlyaEMwjVbiPSDYMXRmeyPX8JZVbVHfFjw87gFDI+akqgKp0ka ksFVHebj8rWmDeTlypkZWS3wT62XOkr8nEAFwUNTCHNcgpThJnSEdnRliCkEUDZS02Fl kOWuhMlTIbKP10z2YxsqETLTw2FP9g4aKZzUI79ge5dfNmnAhmA1PWfexqk5jyR1562S LY9Xu+ZaXFSosIGUni4vs4TgOmUYpXdC7opA7Q51fmjUOCQ0OM5PU/z7XgYnIUsIzgW4 8OwxBBCit1pzaPoE0V3lvcrOGeZv5zLxF053EJQxOdEo9EfdBKbKe+jvt2GXMN+UePQW p/Ig== X-Received: by 10.194.80.73 with SMTP id p9mr26527537wjx.4.1358012199828; Sat, 12 Jan 2013 09:36:39 -0800 (PST) Received: from yakj.lan (93-34-179-137.ip50.fastwebnet.it. [93.34.179.137]) by mx.google.com with ESMTPS id h19sm4576016wiv.7.2013.01.12.09.36.38 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sat, 12 Jan 2013 09:36:39 -0800 (PST) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Sat, 12 Jan 2013 18:35:25 +0100 Message-Id: <1358012138-21613-15-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.8.1 In-Reply-To: <1358012138-21613-1-git-send-email-pbonzini@redhat.com> References: <1358012138-21613-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.82.52 Subject: [Qemu-devel] [PATCH 14/27] libcacard: list oslib-obj-y file explicitly 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 We will grow the list of files in the next patches, but libcacard should remain slim. Signed-off-by: Paolo Bonzini --- libcacard/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libcacard/Makefile b/libcacard/Makefile index 63d82f4..7e26082 100644 --- a/libcacard/Makefile +++ b/libcacard/Makefile @@ -3,7 +3,11 @@ libcacard_includedir=$(includedir)/cacard TOOLS += vscclient$(EXESUF) # objects linked into a shared library, built with libtool with -fPIC if required -libcacard-obj-y=$(oslib-obj-y) error.o $(trace-obj-y) $(stub-obj-y) $(libcacard-y) +libcacard-obj-y = $(trace-obj-y) $(stub-obj-y) $(libcacard-y) +libcacard-obj-y += osdep.o cutils.o qemu-timer-common.o error.o +libcacard-obj-$(CONFIG_WIN32) += oslib-win32.o qemu-thread-win32.o +libcacard-obj-$(CONFIG_POSIX) += oslib-posix.o qemu-thread-posix.o + libcacard-lobj-y=$(patsubst %.o,%.lo,$(libcacard-obj-y)) # libtool will build the .o files, too