From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Michael S. Tsirkin" Subject: [PATCH] qemu-kvm: make clean should propagate into libkvm directory Date: Mon, 27 Apr 2009 11:07:11 +0300 Message-ID: <20090427080711.GA30211@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: kvm@vger.kernel.org To: avi@redhat.com Return-path: 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 Content-Disposition: inline Sender: kvm-owner@vger.kernel.org List-ID: 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),) -- 1.6.0.6