mirror of
https://github.com/holub/mame
synced 2025-04-16 13:34:55 +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.make.override = { "TARGET" }
|
||||
MAME_DIR = (path.getabsolute("..") .. "/")
|
||||
|
@ -1,3 +1,6 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
--------------------------------------------------
|
||||
-- expat library objects
|
||||
--------------------------------------------------
|
||||
|
@ -1,12 +1,12 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
---------------------------------------------------------------------------
|
||||
--
|
||||
-- bus.lua
|
||||
--
|
||||
-- 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
|
||||
--
|
||||
-- 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")
|
||||
uuid ("e6fa15e4-a354-4526-acef-13c8e80fcacf")
|
||||
kind "StaticLib"
|
||||
|
@ -1,3 +1,6 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
project "utils"
|
||||
uuid "22489ad0-4cb2-4d91-ad81-24b0d80ca30a"
|
||||
kind "StaticLib"
|
||||
|
@ -1,12 +1,12 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
---------------------------------------------------------------------------
|
||||
--
|
||||
-- machine.lua
|
||||
--
|
||||
-- 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)
|
||||
if (_target == _subtarget) then
|
||||
project (_target)
|
||||
|
@ -1,3 +1,6 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
files {
|
||||
MAME_DIR .. "src/emu/netlist/nl_config.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)
|
||||
return string.sub(String,1,string.len(Start))==Start
|
||||
end
|
||||
|
@ -1,3 +1,6 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
function maintargetosdoptions(_target)
|
||||
end
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
defines {
|
||||
"OSD_MINI",
|
||||
"USE_QTDEBUG",
|
||||
|
@ -1,3 +1,6 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
dofile("modules.lua")
|
||||
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
forcedincludes {
|
||||
MAME_DIR .. "src/osd/sdl/sdlprefix.h"
|
||||
}
|
||||
|
@ -1,3 +1,6 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
dofile("modules.lua")
|
||||
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
defines {
|
||||
"OSD_WINDOWS",
|
||||
"_WIN32_WINNT=0x0501",
|
||||
|
@ -1,12 +1,12 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
---------------------------------------------------------------------------
|
||||
--
|
||||
-- sound.lua
|
||||
--
|
||||
-- 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
|
||||
--------------------------------------------------
|
||||
|
@ -1,12 +1,12 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
---------------------------------------------------------------------------
|
||||
--
|
||||
-- video.lua
|
||||
--
|
||||
-- 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
|
||||
--
|
||||
-- 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
|
||||
|
@ -1,3 +1,6 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
---------------------------------------------------------------------------
|
||||
--
|
||||
-- dummy.lua
|
||||
|
@ -1,3 +1,6 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
---------------------------------------------------------------------------
|
||||
--
|
||||
-- mame.lua
|
||||
|
@ -1,3 +1,6 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
---------------------------------------------------------------------------
|
||||
--
|
||||
-- mess.lua
|
||||
|
@ -1,3 +1,6 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:MAMEdev Team
|
||||
|
||||
---------------------------------------------------------------------------
|
||||
--
|
||||
-- tiny.lua
|
||||
|
Loading…
Reference in New Issue
Block a user