summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-05-27 15:02:33 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2015-05-27 15:02:33 +0200
commit2e772fb16078401daaf14d7a6f7ef2a6f062dbf0 (patch)
tree4126fb7a6bb475c0f7917ba24aa4b8151bf25f7c /makefile
parentccc42edb39a5b148558f2d8a5df1859899b6a12a (diff)
Added lua script/makefile changes to support building tests and portaudio (nw)
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/makefile b/makefile
index 199fd570c6c..4d6cf108260 100644
--- a/makefile
+++ b/makefile
@@ -22,6 +22,7 @@
# TARGET = mame
# SUBTARGET = tiny
# TOOLS = 1
+# TESTS = 1
# OSD = sdl
# USE_BGFX = 1
@@ -375,6 +376,10 @@ ifdef TOOLS
PARAMS += --with-tools
endif
+ifdef TESTS
+PARAMS += --with-tests
+endif
+
ifdef SYMBOLS
PARAMS += --SYMBOLS='$(SYMBOLS)'
endif
@@ -571,6 +576,7 @@ SCRIPTS = scripts/genie.lua \
$(wildcard scripts/src/osd/$(OSD)*.lua) \
scripts/src/sound.lua \
scripts/src/tools.lua \
+ scripts/src/tests.lua \
scripts/src/video.lua \
scripts/src/bus.lua \
scripts/src/netlist.lua \