diff options
author | 2015-05-31 23:34:31 +0200 | |
---|---|---|
committer | 2015-06-01 00:54:45 +0200 | |
commit | 872ca80ac52c1bcc47cf5b0b087ccdc891496851 (patch) | |
tree | c9cff06dffd50a52928f53c8c1d0d9dbddfc1eae /scripts/src/tools.lua | |
parent | 7500669a194853266769f1cad42f7c9acf257e60 (diff) |
Converted netlist into a library. Moved most code from nl_convert.h to
nl_convert.c. Targets using netlist must now specify this explicitly
with MACHINES["NETLIST"] = true
Added subtarget "nl" which only contains games with netlist elements.
(nw)
Diffstat (limited to 'scripts/src/tools.lua')
-rw-r--r-- | scripts/src/tools.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/src/tools.lua b/scripts/src/tools.lua index 936afb54346..b7a88f038f7 100644 --- a/scripts/src/tools.lua +++ b/scripts/src/tools.lua @@ -443,6 +443,7 @@ links { "flac", "7z", "ocore_" .. _OPTIONS["osd"], + "netlist", } includedirs { @@ -455,8 +456,6 @@ files { MAME_DIR .. "src/tools/nltool.c", } -dofile("netlist.lua") - -------------------------------------------------- -- castool -------------------------------------------------- |