mirror of
https://github.com/holub/mame
synced 2025-07-04 17:38:08 +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
|
endif
|
||||||
|
|
||||||
# fullname is prefix+name+suffix+suffix64+suffixdebug
|
# 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
|
# add an EXE suffix to get the final emulator name
|
||||||
EMULATOR = $(FULLNAME)$(EXE)
|
EMULATOR = $(FULLNAME)$(EXE)
|
||||||
|
Loading…
Reference in New Issue
Block a user