From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:57339) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tv9RZ-0005f6-Q5 for qemu-devel@nongnu.org; Tue, 15 Jan 2013 11:33:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tv9RV-0000We-6Y for qemu-devel@nongnu.org; Tue, 15 Jan 2013 11:32:57 -0500 Received: from mx1.redhat.com ([209.132.183.28]:34052) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tv9RU-0000WW-Tt for qemu-devel@nongnu.org; Tue, 15 Jan 2013 11:32:53 -0500 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r0FGWqXH009562 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 15 Jan 2013 11:32:52 -0500 Received: from redhat.com ([10.35.212.26]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with SMTP id r0FGWotu003514 for ; Tue, 15 Jan 2013 11:32:51 -0500 Date: Tue, 15 Jan 2013 18:36:50 +0200 From: "Michael S. Tsirkin" Message-ID: <87539969776f984e4b50736ba13c15f8131e6b2f.1358267772.git.mst@redhat.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: [Qemu-devel] [PATCH 4/4] Makefile: fix make clean on libcacard List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@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 -- MST