mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
Delete symbols file if defined when invoking clean target. [Curt Coder]
This commit is contained in:
parent
7634b3087f
commit
70efaaf040
1 changed files with 4 additions and 0 deletions
4
makefile
4
makefile
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue