Delete MSVC intermediate files on "make clean" from tests.

lld-link shells out to MSVC for certain types of work, and this
results in some MSVC output files being generated even though
clang / lld are the compiler / linker.  This is expected, so we
make sure to clean these output files on make clean.

llvm-svn: 224345
This commit is contained in:
Zachary Turner 2014-12-16 16:48:19 +00:00
parent e46d54f0bf
commit 3e9ca3a625
1 changed files with 3 additions and 1 deletions

View File

@ -449,7 +449,9 @@ endif
ifneq "$(DSYM)" ""
$(RM) -r "$(DSYM)"
endif
ifeq "$(OS)" "Windows_NT"
$(RM) "$(EXE).manifest" $(wildcard *.pdb *.ilk)
endif
#----------------------------------------------------------------------
# From http://blog.melski.net/tag/debugging-makefiles/