summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-12-31 10:51:15 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-12-31 10:51:15 +0100
commit1aa986d61733ccc49622b2ea0daade450508fa0d (patch)
treefc6ce422d188711fb639c4dce8359e361b53c757 /makefile
parent47bf03513e4fc8a916144fcc43fc9826aa03bedb (diff)
Revert "removing MESS brand and making MAME a name not acronym (nw)"
Too contraversial for now :) This reverts commit 47bf03513e4fc8a916144fcc43fc9826aa03bedb.
Diffstat (limited to 'makefile')
-rw-r--r--makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/makefile b/makefile
index 4808294fc42..62086ea0545 100644
--- a/makefile
+++ b/makefile
@@ -182,7 +182,7 @@ endif
#-------------------------------------------------
# specify core target: mame, ldplayer
-# specify subtarget: mame, nl, dummy, tiny, etc.
+# specify subtarget: mame, arcade, mess, tiny, etc.
# build scripts will be run from
# scripts/target/$(TARGET)/$(SUBTARGET).lua
#-------------------------------------------------
@@ -698,6 +698,11 @@ SCRIPTS = scripts/genie.lua \
$(wildcard src/osd/$(OSD)/$(OSD).mak) \
$(wildcard src/$(TARGET)/$(SUBTARGET).mak)
+ifeq ($(SUBTARGET),mame)
+SCRIPTS += scripts/target/$(TARGET)/arcade.lua
+SCRIPTS += scripts/target/$(TARGET)/mess.lua
+endif
+
ifndef SOURCES
SCRIPTS += scripts/target/$(TARGET)/$(SUBTARGET).lua
endif
@@ -765,6 +770,8 @@ MSBUILD_PARAMS += /p:Platform=win32
endif
ifeq ($(SUBTARGET),mame)
MSBUILD_SOLUTION := $(SUBTARGET).sln
+else ifeq ($(SUBTARGET),mess)
+MSBUILD_SOLUTION := $(SUBTARGET).sln
else
MSBUILD_SOLUTION := $(TARGET)$(SUBTARGET).sln
endif