mirror of
https://github.com/holub/mame
synced 2025-07-02 00:29:37 +03:00
Added info header at the top of each .lua file (nw)
This commit is contained in:
parent
4884956b4e
commit
31cca9ea63
@ -1,6 +1,14 @@
|
|||||||
-- license:BSD-3-Clause
|
-- license:BSD-3-Clause
|
||||||
-- copyright-holders:MAMEdev Team
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
--
|
||||||
|
-- 3rdparty.lua
|
||||||
|
--
|
||||||
|
-- Library objects for all 3rdparty sources
|
||||||
|
--
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
-- expat library objects
|
-- expat library objects
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
|
@ -1,6 +1,14 @@
|
|||||||
-- license:BSD-3-Clause
|
-- license:BSD-3-Clause
|
||||||
-- copyright-holders:MAMEdev Team
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
--
|
||||||
|
-- devices.lua
|
||||||
|
--
|
||||||
|
-- Rules for building device cores
|
||||||
|
--
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
function devicesProject(_target, _subtarget)
|
function devicesProject(_target, _subtarget)
|
||||||
|
|
||||||
disasm_files = { }
|
disasm_files = { }
|
||||||
|
@ -1,6 +1,14 @@
|
|||||||
-- license:BSD-3-Clause
|
-- license:BSD-3-Clause
|
||||||
-- copyright-holders:MAMEdev Team
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
--
|
||||||
|
-- emu.lua
|
||||||
|
--
|
||||||
|
-- Rules for building emu cores
|
||||||
|
--
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
project ("emu")
|
project ("emu")
|
||||||
targetsubdir(_OPTIONS["target"] .."_" .. _OPTIONS["subtarget"])
|
targetsubdir(_OPTIONS["target"] .."_" .. _OPTIONS["subtarget"])
|
||||||
uuid ("e6fa15e4-a354-4526-acef-13c8e80fcacf")
|
uuid ("e6fa15e4-a354-4526-acef-13c8e80fcacf")
|
||||||
|
@ -1,6 +1,14 @@
|
|||||||
-- license:BSD-3-Clause
|
-- license:BSD-3-Clause
|
||||||
-- copyright-holders:MAMEdev Team
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
--
|
||||||
|
-- lib.lua
|
||||||
|
--
|
||||||
|
-- Rules for building lib cores
|
||||||
|
--
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
project "utils"
|
project "utils"
|
||||||
uuid "22489ad0-4cb2-4d91-ad81-24b0d80ca30a"
|
uuid "22489ad0-4cb2-4d91-ad81-24b0d80ca30a"
|
||||||
kind (LIBTYPE)
|
kind (LIBTYPE)
|
||||||
|
@ -1,6 +1,14 @@
|
|||||||
-- license:BSD-3-Clause
|
-- license:BSD-3-Clause
|
||||||
-- copyright-holders:MAMEdev Team
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
--
|
||||||
|
-- main.lua
|
||||||
|
--
|
||||||
|
-- Rules for building main binary
|
||||||
|
--
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
function mainProject(_target, _subtarget)
|
function mainProject(_target, _subtarget)
|
||||||
if (_OPTIONS["SOURCES"] == nil) then
|
if (_OPTIONS["SOURCES"] == nil) then
|
||||||
if (_target == _subtarget) then
|
if (_target == _subtarget) then
|
||||||
|
@ -1,6 +1,14 @@
|
|||||||
-- license:BSD-3-Clause
|
-- license:BSD-3-Clause
|
||||||
-- copyright-holders:MAMEdev Team
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
--
|
||||||
|
-- netlist.lua
|
||||||
|
--
|
||||||
|
-- Rules for building netlist cores
|
||||||
|
--
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
project "netlist"
|
project "netlist"
|
||||||
uuid "665ef8ac-2a4c-4c3e-a05f-fd1e5db11de9"
|
uuid "665ef8ac-2a4c-4c3e-a05f-fd1e5db11de9"
|
||||||
kind (LIBTYPE)
|
kind (LIBTYPE)
|
||||||
|
@ -1,6 +1,14 @@
|
|||||||
-- license:BSD-3-Clause
|
-- license:BSD-3-Clause
|
||||||
-- copyright-holders:MAMEdev Team
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
--
|
||||||
|
-- modules.lua
|
||||||
|
--
|
||||||
|
-- Rules for the building of modules
|
||||||
|
--
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
function string.starts(String,Start)
|
function string.starts(String,Start)
|
||||||
return string.sub(String,1,string.len(Start))==Start
|
return string.sub(String,1,string.len(Start))==Start
|
||||||
end
|
end
|
||||||
|
@ -1,6 +1,14 @@
|
|||||||
-- license:BSD-3-Clause
|
-- license:BSD-3-Clause
|
||||||
-- copyright-holders:MAMEdev Team
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
--
|
||||||
|
-- osdmini.lua
|
||||||
|
--
|
||||||
|
-- Rules for the building of osdmini
|
||||||
|
--
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
function maintargetosdoptions(_target,_subtarget)
|
function maintargetosdoptions(_target,_subtarget)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -1,6 +1,14 @@
|
|||||||
-- license:BSD-3-Clause
|
-- license:BSD-3-Clause
|
||||||
-- copyright-holders:MAMEdev Team
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
--
|
||||||
|
-- sdl.lua
|
||||||
|
--
|
||||||
|
-- Rules for the building with SDL
|
||||||
|
--
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
dofile("modules.lua")
|
dofile("modules.lua")
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,6 +1,14 @@
|
|||||||
-- license:BSD-3-Clause
|
-- license:BSD-3-Clause
|
||||||
-- copyright-holders:MAMEdev Team
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
--
|
||||||
|
-- windows.lua
|
||||||
|
--
|
||||||
|
-- Rules for the building for Windows
|
||||||
|
--
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
dofile("modules.lua")
|
dofile("modules.lua")
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,9 +1,13 @@
|
|||||||
-- license:BSD-3-Clause
|
-- license:BSD-3-Clause
|
||||||
-- copyright-holders:MAMEdev Team
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
--------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
-- MAME tests
|
--
|
||||||
--------------------------------------------------
|
-- tests.lua
|
||||||
|
--
|
||||||
|
-- Rules for building tests
|
||||||
|
--
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
project("tests")
|
project("tests")
|
||||||
uuid ("66d4c639-196b-4065-a411-7ee9266564f5")
|
uuid ("66d4c639-196b-4065-a411-7ee9266564f5")
|
||||||
|
@ -1,6 +1,14 @@
|
|||||||
-- license:BSD-3-Clause
|
-- license:BSD-3-Clause
|
||||||
-- copyright-holders:MAMEdev Team
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
--
|
||||||
|
-- tools.lua
|
||||||
|
--
|
||||||
|
-- Rules for the building of tools
|
||||||
|
--
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
-- romcmp
|
-- romcmp
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user