Delete symbols file if defined when invoking clean target. [Curt Coder]

This commit is contained in:
Curt Coder 2011-02-12 22:17:46 +00:00
parent 7634b3087f
commit 70efaaf040

View file

@ -692,6 +692,10 @@ ifdef MAP
@echo Deleting $(FULLNAME).map...
$(RM) $(FULLNAME).map
endif
ifdef SYMBOLS
@echo Deleting $(FULLNAME).sym...
$(RM) $(FULLNAME).sym
endif
checkautodetect:
@echo TARGETOS=$(TARGETOS)