From: Ryota OZAKI <[EMAIL PROTECTED]> Current 'make clean' deletes config.mak files so that we have to ./configure again after doing that. This behavior is different from that of standard 'make clean'.
This patch introduces 'make distclean' to delete config.mak files instead of 'make clean', following a standard manner of Makefile. Signed-off-by: Avi Kivity <[EMAIL PROTECTED]> diff --git a/Makefile b/Makefile index d4cd877..83f9387 100644 --- a/Makefile +++ b/Makefile @@ -91,4 +91,6 @@ clean: for i in $(if $(WANT_MODULE), kernel) user libkvm qemu; do \ make -C $$i clean; \ done + +distclean: clean rm -f config.mak user/config.mak ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ kvm-commits mailing list kvm-commits@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/kvm-commits