diff options
| author | 2013-06-19 01:41:40 +0000 | |
|---|---|---|
| committer | 2013-06-19 01:41:40 +0000 | |
| commit | bb786b81fe40550ead552c6fd9d06c5fb6d27d01 (patch) | |
| tree | 9ebeedbb5b7bcfc69c9ac6fa73b72069e6dd77ed /makefile | |
| parent | f268ee02e5e222a69bd1d58810c0967ad9c3650e (diff) | |
Make FULLNAME use ?= instead of =, allows users to override the final executable name from the command line (nw)
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |
