mirror of
https://github.com/holub/mame
synced 2025-04-19 23:12:11 +03:00
Make FULLNAME use ?= instead of =, allows users to override the final executable name from the command line (nw)
This commit is contained in:
parent
f268ee02e5
commit
bb786b81fe
2
makefile
2
makefile
@ -367,7 +367,7 @@ NAME = $(TARGET)$(SUBTARGET)
|
||||
endif
|
||||
|
||||
# fullname is prefix+name+suffix+suffix64+suffixdebug
|
||||
FULLNAME = $(PREFIX)$(PREFIXSDL)$(NAME)$(SUFFIX)$(SUFFIX64)$(SUFFIXDEBUG)$(SUFFIXPROFILE)
|
||||
FULLNAME ?= $(PREFIX)$(PREFIXSDL)$(NAME)$(SUFFIX)$(SUFFIX64)$(SUFFIXDEBUG)$(SUFFIXPROFILE)
|
||||
|
||||
# add an EXE suffix to get the final emulator name
|
||||
EMULATOR = $(FULLNAME)$(EXE)
|
||||
|
Loading…
Reference in New Issue
Block a user