Re: [PATCH] qemu-kvm: make clean should propagate into libkvm directory

2009-05-04 Thread Avi Kivity

Michael S. Tsirkin wrote:

make 'clean' target propage into libkvm if it's enabled

  


Applied, thanks.

--
Do not meddle in the internals of kernels, for they are subtle and quick to 
panic.

--
To unsubscribe from this list: send the line unsubscribe kvm in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] qemu-kvm: make clean should propagate into libkvm directory

2009-04-27 Thread Michael S. Tsirkin
make 'clean' target propage into libkvm if it's enabled

Signed-off-by: Michael S. Tsirkin m...@redhat.com
---
 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

--
To unsubscribe from this list: send the line unsubscribe kvm in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html