summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-09-21 09:03:25 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-09-21 09:03:25 +0000
commit38978f878a939e437b632995410cd1cd5d16c25c (patch)
tree1ed878f072a4fe229991283546e310315e34ade8 /makefile
parentab32fcf57519c988fc2dd4b56597e48898474768 (diff)
Move MSVC clean out of core makefile and into windows.mak where it belongs.
Diffstat (limited to 'makefile')
-rw-r--r--makefile8
1 files changed, 1 insertions, 7 deletions
diff --git a/makefile b/makefile
index a84e26982b0..fc1a2f6c743 100644
--- a/makefile
+++ b/makefile
@@ -509,7 +509,7 @@ tools: maketree $(TOOLS)
maketree: $(sort $(OBJDIRS))
-clean:
+clean: $(OSDCLEAN)
@echo Deleting object tree $(OBJ)...
$(RM) -r $(OBJ)
@echo Deleting $(EMULATOR)...
@@ -520,12 +520,6 @@ 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