Commit 68e73e391fe7a26c46bb95df226fade0427669c0

Authored by bellard
1 parent c0637b37

clean tests dir


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@590 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 2 changed files with 2 additions and 1 deletions
Makefile
... ... @@ -24,6 +24,7 @@ clean:
24 24 # avoid old build problems by removing potentially incorrect old files
25 25 rm -f config.mak config.h op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
26 26 rm -f *.o *.a $(TOOLS) dyngen TAGS qemu.pod
  27 + make -C tests clean
27 28 for d in $(TARGET_DIRS); do \
28 29 make -C $$d $@ || exit 1 ; \
29 30 done
... ...
tests/Makefile
... ... @@ -72,4 +72,4 @@ test2:
72 72 done
73 73  
74 74 clean:
75   - rm -f *~ *.o $(TESTS)
  75 + rm -f *~ *.o test-i386.out test-i386.ref $(TESTS)
... ...