Hi all, 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. Thanks, ozaki-r -- Makefile | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) 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-devel mailing list kvm-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/kvm-devel