summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
author Ryan Holtz <rholtz@batcountryentertainment.com>2013-06-19 01:41:40 +0000
committer Ryan Holtz <rholtz@batcountryentertainment.com>2013-06-19 01:41:40 +0000
commitbb786b81fe40550ead552c6fd9d06c5fb6d27d01 (patch)
tree9ebeedbb5b7bcfc69c9ac6fa73b72069e6dd77ed /makefile
parentf268ee02e5e222a69bd1d58810c0967ad9c3650e (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--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index ba34c36ff2b..7d217b4378c 100644
--- a/makefile
+++ b/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)