Added deletion of MSVC specific files to clean task.

This commit is contained in:
Curt Coder 2009-09-16 07:20:32 +00:00
parent 5e33f4fd5c
commit 33bf61f326

View File

@ -520,6 +520,12 @@ ifdef MAP
@echo Deleting $(FULLNAME).map...
$(RM) $(FULLNAME).map
endif
ifdef MSVC_BUILD
@echo Deleting Visual Studio specific files...
$(RM) *.pdb
$(RM) *.lib
$(RM) *.exp
endif