summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2010-10-09 08:24:17 +0000
committerBlue Swirl <blauwirbel@gmail.com>2010-10-09 08:24:17 +0000
commitd7489b72cae6ba5aaf7f3ac868b7fd18c0a59809 (patch)
tree7922d8ef8a3e7770cdff500b694475b53e7aa425 /Makefile
parentba80782912293c9b9828d0cf406f90b76bf4f61b (diff)
downloadqemu-d7489b72cae6ba5aaf7f3ac868b7fd18c0a59809.tar.gz
trace: remove timestamp files when cleaning up
'make clean' did not remove trace.[ch]-timestamp files, only trace.[ch]. But 'make' did not know how to make trace.[ch] files if the timestamp files were present. Fix by removing the timestamp files along with trace.[ch]. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 92c041eaf3..d9971c33f3 100644
--- a/Makefile
+++ b/Makefile
@@ -153,7 +153,7 @@ clean:
rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
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
rm -f qemu-img-cmds.h
- rm -f trace.c trace.h
+ rm -f trace.c trace.h trace.c-timestamp trace.h-timestamp
$(MAKE) -C tests clean
for d in $(ALL_SUBDIRS) libhw32 libhw64 libuser libdis libdis-user; do \
if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \