From: Anthony PERARD Date: Mon, 2 Apr 2012 15:10:39 +0000 (+0100) Subject: make: fix clean rule by removing build file in qom/ X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=53fbf7b5391c76cc474d469bfed6a69a1243f4de;p=qemu.git make: fix clean rule by removing build file in qom/ Make clean does not clean the 'qom' directory, leaving *.o and *.d files. This patch fixes this. Signed-off-by: Anthony PERARD Signed-off-by: Stefan Hajnoczi --- diff --git a/Makefile b/Makefile index 35c7a2a551..a78f53d4c9 100644 --- a/Makefile +++ b/Makefile @@ -217,6 +217,7 @@ clean: rm -f *.o *.d *.a *.lo $(TOOLS) $(HELPERS-y) qemu-ga TAGS cscope.* *.pod *~ */*~ rm -Rf .libs rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d net/*.o net/*.d fsdev/*.o fsdev/*.d ui/*.o ui/*.d qapi/*.o qapi/*.d qga/*.o qga/*.d + rm -f qom/*.o qom/*.d rm -f qemu-img-cmds.h rm -f trace/*.o trace/*.d rm -f trace.c trace.h trace.c-timestamp trace.h-timestamp