diff options
author | Anthony PERARD <anthony.perard@citrix.com> | 2012-04-02 16:10:39 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2012-04-03 09:55:26 +0100 |
commit | 53fbf7b5391c76cc474d469bfed6a69a1243f4de (patch) | |
tree | ad5820243fd1381dcde4fd67cedac92fe2f75289 /Makefile | |
parent | c9a2e37c7d70e1b1f11997f7ecab202393bff9fc (diff) | |
download | qemu-53fbf7b5391c76cc474d469bfed6a69a1243f4de.tar.gz qemu-53fbf7b5391c76cc474d469bfed6a69a1243f4de.tar.bz2 qemu-53fbf7b5391c76cc474d469bfed6a69a1243f4de.zip |
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 <anthony.perard@citrix.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |