From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:50915) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tu50i-0002kk-LZ for qemu-devel@nongnu.org; Sat, 12 Jan 2013 12:36:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tu50Z-0000Py-5K for qemu-devel@nongnu.org; Sat, 12 Jan 2013 12:36:48 -0500 Received: from mail-wg0-x229.google.com ([2a00:1450:400c:c00::229]:56565) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tu50Y-0000Pq-Vg for qemu-devel@nongnu.org; Sat, 12 Jan 2013 12:36:39 -0500 Received: by mail-wg0-f41.google.com with SMTP id ds1so422620wgb.4 for ; Sat, 12 Jan 2013 09:36:38 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Sat, 12 Jan 2013 18:35:24 +0100 Message-Id: <1358012138-21613-14-git-send-email-pbonzini@redhat.com> In-Reply-To: <1358012138-21613-1-git-send-email-pbonzini@redhat.com> References: <1358012138-21613-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH 13/27] libcacard: link vscclient to dynamic library List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org There is no reason for vscclient to duplicate the code. rules.mak takes care of invoking libtool to do the link. Signed-off-by: Paolo Bonzini --- libcacard/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libcacard/Makefile b/libcacard/Makefile index 34ef3b4..63d82f4 100644 --- a/libcacard/Makefile +++ b/libcacard/Makefile @@ -11,8 +11,7 @@ $(libcacard-obj-y): | $(libcacard-lobj-y) all: libcacard.la libcacard.pc -vscclient$(EXESUF): LIBS += $(libcacard_libs) -vscclient$(EXESUF): libcacard/vscclient.o $(libcacard-obj-y) +vscclient$(EXESUF): libcacard/vscclient.o libcacard.la $(call LINK,$^) ######################################################################### -- 1.8.1