From patchwork Thu Dec 6 13:06:39 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 204218 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 60E4E2C0317 for ; Fri, 7 Dec 2012 00:07:48 +1100 (EST) Received: from localhost ([::1]:42790 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgbAz-0003Mc-TY for incoming@patchwork.ozlabs.org; Thu, 06 Dec 2012 08:07:41 -0500 Received: from eggs.gnu.org ([208.118.235.92]:38691) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgbAr-0003MQ-Vf for qemu-devel@nongnu.org; Thu, 06 Dec 2012 08:07:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TgbAl-0004wA-Pg for qemu-devel@nongnu.org; Thu, 06 Dec 2012 08:07:33 -0500 Received: from mail-ia0-f178.google.com ([209.85.210.178]:44766) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgbAl-0004w3-LM for qemu-devel@nongnu.org; Thu, 06 Dec 2012 08:07:27 -0500 Received: by mail-ia0-f178.google.com with SMTP id k25so5417310iah.37 for ; Thu, 06 Dec 2012 05:07:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=AsoctYO7m1Ta1VCEGxEDAS6Vla4GNz6CcLPQl2PYZyU=; b=VU8crQ/6ENVtBbgGTIxMFTY5cCJsImHJSb830uK5OCu5VNvoP0ZCHqeh/VCnjOYUM3 MvUi4PG1A6KmQ6LPjNFqMGdAVjevakH2GMobsaBM9LFC3RrxlwSA/8mivujL/shjKm8p kVmtVD9ROPYvMNdkevyy11MzOT5Sk3wVPsDSkr6PwIKwFdi3tXJSO2nv5+FebJuOknrX kqf8hq0+SKEpCTPyFbI1mVB9jeSn6f1Ja2e6iW+xiyAw8N4sVbBQ9k8FhX6zETEx1Dt/ 3Dube7sOIrvt037hMWVKlYqaL+kh9aXiQxxFDpBoCdOh78tIetU+0NUb5US97JS2eIj0 FcmQ== Received: by 10.50.153.137 with SMTP id vg9mr5634774igb.40.1354799246704; Thu, 06 Dec 2012 05:07:26 -0800 (PST) Received: from yakj.usersys.redhat.com (93-34-219-150.ip51.fastwebnet.it. [93.34.219.150]) by mx.google.com with ESMTPS id wm10sm15431723igc.2.2012.12.06.05.07.23 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 06 Dec 2012 05:07:25 -0800 (PST) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Thu, 6 Dec 2012 14:06:39 +0100 Message-Id: <1354799230-30904-2-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.8.0.1 In-Reply-To: <1354799230-30904-1-git-send-email-pbonzini@redhat.com> References: <1354799230-30904-1-git-send-email-pbonzini@redhat.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 209.85.210.178 Cc: aliguori@us.ibm.com, afaerber@suse.de Subject: [Qemu-devel] [PATCH 01/32] libcacard: simplify rules for recursive build 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: Paolo Bonzini --- Makefile | 10 +--------- 1 files changed, 1 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 9ecbcbb..d06fbad 100644 --- a/Makefile +++ b/Makefile @@ -169,19 +169,11 @@ libqemustub.a: $(stub-obj-y) # Support building shared library libcacard .PHONY: libcacard.la install-libcacard -ifeq ($(LIBTOOL),) -libcacard.la: - @echo "libtool is missing, please install and rerun configure"; exit 1 - -install-libcacard: - @echo "libtool is missing, please install and rerun configure"; exit 1 -else -libcacard.la: $(oslib-obj-y) qemu-timer-common.o $(addsuffix .lo, $(basename $(trace-obj-y))) +libcacard.la: $(oslib-obj-y) qemu-timer-common.o $(trace-obj-y) $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libcacard V="$(V)" TARGET_DIR="$*/" libcacard.la,) install-libcacard: libcacard.la $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libcacard V="$(V)" TARGET_DIR="$*/" install-libcacard,) -endif ######################################################################