From patchwork Mon Apr 27 08:07:11 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Michael S. Tsirkin" X-Patchwork-Id: 20075 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n3R88GgC007237 for ; Mon, 27 Apr 2009 08:08:16 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753682AbZD0IIN (ORCPT ); Mon, 27 Apr 2009 04:08:13 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753750AbZD0IIN (ORCPT ); Mon, 27 Apr 2009 04:08:13 -0400 Received: from mx2.redhat.com ([66.187.237.31]:51818 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753676AbZD0IIM (ORCPT ); Mon, 27 Apr 2009 04:08:12 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n3R88COu012952 for ; Mon, 27 Apr 2009 04:08:12 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n3R88BSw022209; Mon, 27 Apr 2009 04:08:12 -0400 Received: from redhat.com (vpn-10-134.str.redhat.com [10.32.10.134]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n3R889a2007016; Mon, 27 Apr 2009 04:08:10 -0400 Date: Mon, 27 Apr 2009 11:07:11 +0300 From: "Michael S. Tsirkin" To: avi@redhat.com Cc: kvm@vger.kernel.org Subject: [PATCH] qemu-kvm: make clean should propagate into libkvm directory Message-ID: <20090427080711.GA30211@redhat.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) X-Scanned-By: MIMEDefang 2.58 on 172.16.27.26 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org make 'clean' target propage into libkvm if it's enabled Signed-off-by: Michael S. Tsirkin --- Makefile.target | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/Makefile.target b/Makefile.target index d890220..28dce60 100644 --- a/Makefile.target +++ b/Makefile.target @@ -846,6 +846,9 @@ qemu-options.h: $(SRC_PATH)/qemu-options.hx clean: rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o qemu-options.h gdbstub-xml.c rm -f *.d */*.d tcg/*.o +ifdef USE_KVM + $(MAKE) -C ../kvm/libkvm clean +endif install: all ifneq ($(PROGS),)