From patchwork Tue Jan 15 16:57:28 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Michael S. Tsirkin" X-Patchwork-Id: 212250 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 245142C007E for ; Wed, 16 Jan 2013 03:54:09 +1100 (EST) Received: from localhost ([::1]:56885 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tv9m3-0006hK-7f for incoming@patchwork.ozlabs.org; Tue, 15 Jan 2013 11:54:07 -0500 Received: from eggs.gnu.org ([208.118.235.92]:34134) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tv9lZ-00064j-Fp for qemu-devel@nongnu.org; Tue, 15 Jan 2013 11:53:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tv9lW-0006o1-QN for qemu-devel@nongnu.org; Tue, 15 Jan 2013 11:53:37 -0500 Received: from mx1.redhat.com ([209.132.183.28]:56499) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tv9lW-0006nx-IO for qemu-devel@nongnu.org; Tue, 15 Jan 2013 11:53:34 -0500 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r0FGrXUb027222 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 15 Jan 2013 11:53:34 -0500 Received: from redhat.com ([10.35.212.26]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with SMTP id r0FGrSlD016666 for ; Tue, 15 Jan 2013 11:53:29 -0500 Date: Tue, 15 Jan 2013 18:57:28 +0200 From: "Michael S. Tsirkin" To: qemu-devel@nongnu.org Message-ID: <87539969776f984e4b50736ba13c15f8131e6b2f.1358267772.git.mst@redhat.com> References: MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: X-Mutt-Fcc: =sent X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 4/4] Makefile: fix make clean on libcacard 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 libcacard lacks a clean target. Need to fix it, meanwhile mark this target phony so it does not stop parallel make clean. Signed-off-by: Michael S. Tsirkin --- libcacard/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcacard/Makefile b/libcacard/Makefile index 47827a0..a3518c1 100644 --- a/libcacard/Makefile +++ b/libcacard/Makefile @@ -35,7 +35,7 @@ libcacard.pc: $(SRC_PATH)/libcacard/libcacard.pc.in -e 's|@PREFIX@|$(prefix)|' $< > libcacard.pc,\ " GEN $@") -.PHONY: install-libcacard +.PHONY: install-libcacard clean install: install-libcacard install-libcacard: libcacard.pc libcacard.la