mirror of
https://github.com/holub/mame
synced 2025-04-16 21:44:32 +03:00
Removed comments and added generic license for whole team on top (nw)
This commit is contained in:
parent
a9600a90da
commit
ca37d40f69
@ -1,3 +1,6 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
premake.check_paths = true
|
premake.check_paths = true
|
||||||
premake.make.override = { "TARGET" }
|
premake.make.override = { "TARGET" }
|
||||||
MAME_DIR = (path.getabsolute("..") .. "/")
|
MAME_DIR = (path.getabsolute("..") .. "/")
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
-- expat library objects
|
-- expat library objects
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
--
|
--
|
||||||
-- bus.lua
|
-- bus.lua
|
||||||
--
|
--
|
||||||
-- Rules for building bus cores
|
-- Rules for building bus cores
|
||||||
--
|
--
|
||||||
-- Copyright Nicola Salmoria and the MAME Team.
|
|
||||||
-- Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
--
|
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
-------------------------------------------------
|
-------------------------------------------------
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
--
|
--
|
||||||
-- cpu.lua
|
-- cpu.lua
|
||||||
--
|
--
|
||||||
-- Rules for building CPU cores
|
-- Rules for building CPU cores
|
||||||
--
|
--
|
||||||
-- Copyright Nicola Salmoria and the MAME Team.
|
|
||||||
-- Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
--
|
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
project ("emu")
|
project ("emu")
|
||||||
uuid ("e6fa15e4-a354-4526-acef-13c8e80fcacf")
|
uuid ("e6fa15e4-a354-4526-acef-13c8e80fcacf")
|
||||||
kind "StaticLib"
|
kind "StaticLib"
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
project "utils"
|
project "utils"
|
||||||
uuid "22489ad0-4cb2-4d91-ad81-24b0d80ca30a"
|
uuid "22489ad0-4cb2-4d91-ad81-24b0d80ca30a"
|
||||||
kind "StaticLib"
|
kind "StaticLib"
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
--
|
--
|
||||||
-- machine.lua
|
-- machine.lua
|
||||||
--
|
--
|
||||||
-- Rules for building machine cores
|
-- Rules for building machine cores
|
||||||
--
|
--
|
||||||
-- Copyright Nicola Salmoria and the MAME Team.
|
|
||||||
-- Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
--
|
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
function mainProject(_target, _subtarget)
|
function mainProject(_target, _subtarget)
|
||||||
if (_target == _subtarget) then
|
if (_target == _subtarget) then
|
||||||
project (_target)
|
project (_target)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
files {
|
files {
|
||||||
MAME_DIR .. "src/emu/netlist/nl_config.h",
|
MAME_DIR .. "src/emu/netlist/nl_config.h",
|
||||||
MAME_DIR .. "src/emu/netlist/nl_dice_compat.h",
|
MAME_DIR .. "src/emu/netlist/nl_dice_compat.h",
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
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,3 +1,6 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
function maintargetosdoptions(_target)
|
function maintargetosdoptions(_target)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
defines {
|
defines {
|
||||||
"OSD_MINI",
|
"OSD_MINI",
|
||||||
"USE_QTDEBUG",
|
"USE_QTDEBUG",
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
dofile("modules.lua")
|
dofile("modules.lua")
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
forcedincludes {
|
forcedincludes {
|
||||||
MAME_DIR .. "src/osd/sdl/sdlprefix.h"
|
MAME_DIR .. "src/osd/sdl/sdlprefix.h"
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
dofile("modules.lua")
|
dofile("modules.lua")
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
defines {
|
defines {
|
||||||
"OSD_WINDOWS",
|
"OSD_WINDOWS",
|
||||||
"_WIN32_WINNT=0x0501",
|
"_WIN32_WINNT=0x0501",
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
--
|
--
|
||||||
-- sound.lua
|
-- sound.lua
|
||||||
--
|
--
|
||||||
-- Rules for building sound cores
|
-- Rules for building sound cores
|
||||||
--
|
--
|
||||||
-- Copyright Nicola Salmoria and the MAME Team.
|
|
||||||
-- Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
--
|
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
-- romcmp
|
-- romcmp
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
--
|
--
|
||||||
-- video.lua
|
-- video.lua
|
||||||
--
|
--
|
||||||
-- Rules for building video cores
|
-- Rules for building video cores
|
||||||
--
|
--
|
||||||
-- Copyright Nicola Salmoria and the MAME Team.
|
|
||||||
-- Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
--
|
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
--
|
--
|
||||||
-- ldplayer.lua
|
-- ldplayer.lua
|
||||||
--
|
--
|
||||||
-- Small makefile to build a standalone laserdisc player
|
-- Small makefile to build a standalone laserdisc player
|
||||||
--
|
--
|
||||||
-- Copyright Nicola Salmoria and the MAME Team.
|
|
||||||
-- Visit http://mamedev.org for licensing and usage restrictions.
|
|
||||||
--
|
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
--
|
--
|
||||||
-- mame.lua
|
-- mame.lua
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
--
|
--
|
||||||
-- dummy.lua
|
-- dummy.lua
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
--
|
--
|
||||||
-- mame.lua
|
-- mame.lua
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
--
|
--
|
||||||
-- mess.lua
|
-- mess.lua
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
-- license:BSD-3-Clause
|
||||||
|
-- copyright-holders:MAMEdev Team
|
||||||
|
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
--
|
--
|
||||||
-- tiny.lua
|
-- tiny.lua
|
||||||
|
Loading…
Reference in New Issue
Block a user