2007-12-17 16:19:59 +01:00
|
|
|
###########################################################################
|
|
|
|
#
|
|
|
|
# makefile
|
|
|
|
#
|
|
|
|
# Core makefile for building MAME and derivatives
|
|
|
|
#
|
2008-01-06 01:47:40 +01:00
|
|
|
# Copyright (c) Nicola Salmoria and the MAME Team.
|
2007-12-17 16:19:59 +01:00
|
|
|
# Visit http://mamedev.org for licensing and usage restrictions.
|
|
|
|
#
|
|
|
|
###########################################################################
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
###########################################################################
|
|
|
|
################# BEGIN USER-CONFIGURABLE OPTIONS #####################
|
|
|
|
###########################################################################
|
|
|
|
|
2015-04-02 15:45:49 +02:00
|
|
|
# REGENIE = 1
|
|
|
|
# VERBOSE = 1
|
|
|
|
# NOWERROR = 1
|
|
|
|
|
|
|
|
# TARGET = mame
|
|
|
|
# SUBTARGET = tiny
|
|
|
|
# TOOLS = 1
|
|
|
|
# OSD = sdl
|
|
|
|
|
|
|
|
# USE_BGFX = 1
|
|
|
|
# NO_OPENGL = 1
|
|
|
|
# USE_DISPATCH_GL = 0
|
|
|
|
# DIRECTINPUT = 7
|
2015-04-04 05:53:47 +02:00
|
|
|
# USE_SDL = 1
|
2015-04-02 15:45:49 +02:00
|
|
|
# SDL2_MULTIAPI = 1
|
|
|
|
# NO_USE_MIDI = 1
|
|
|
|
# DONT_USE_NETWORK = 1
|
|
|
|
# USE_QTDEBUG = 1
|
|
|
|
# NO_X11 = 1
|
|
|
|
# NO_USE_XINPUT = 0
|
|
|
|
# FORCE_DRC_C_BACKEND = 1
|
|
|
|
|
|
|
|
# DEBUG = 1
|
|
|
|
# PROFILER = 1
|
|
|
|
# SANITIZE = 1
|
|
|
|
|
|
|
|
# PTR64 = 1
|
|
|
|
# BIGENDIAN = 1
|
|
|
|
# NOASM = 1
|
|
|
|
|
|
|
|
# OPTIMIZE = 3
|
|
|
|
# SYMBOLS = 1
|
|
|
|
# SYMLEVEL = 2
|
|
|
|
# MAP = 1
|
|
|
|
# PROFILE = 1
|
|
|
|
# ARCHOPTS =
|
|
|
|
# LDOPTS =
|
|
|
|
|
|
|
|
# MESA_INSTALL_ROOT = /opt/mesa
|
|
|
|
# SDL_INSTALL_ROOT = /opt/sdl2
|
|
|
|
# SDL_FRAMEWORK_PATH = $(HOME)/Library/Frameworks
|
|
|
|
# SDL_LIBVER = sdl
|
|
|
|
# MACOSX_USE_LIBSDL = 1
|
2015-04-04 05:53:47 +02:00
|
|
|
# CYGWIN_BUILD = 1
|
2015-04-02 15:45:49 +02:00
|
|
|
|
|
|
|
# TARGETOS = windows
|
|
|
|
# CROSS_BUILD = 1
|
|
|
|
# OVERRIDE_CC = cc
|
|
|
|
# OVERRIDE_CXX = c++
|
|
|
|
# OVERRIDE_LD = ld
|
|
|
|
|
2015-04-06 16:27:14 +02:00
|
|
|
# DEPRECATED = 1
|
|
|
|
# LTO = 1
|
|
|
|
# SSE2 = 1
|
|
|
|
# OPENMP = 1
|
|
|
|
# CPP11 = 1
|
2015-04-06 16:33:21 +02:00
|
|
|
# FASTDEBUG = 1
|
2015-04-02 15:45:49 +02:00
|
|
|
|
2015-04-07 13:23:31 +02:00
|
|
|
# FILTER_DEPS = 1
|
2015-04-08 08:52:02 +02:00
|
|
|
# SEPARATE_BIN = 1
|
2015-04-08 14:19:43 +02:00
|
|
|
# PYTHON_EXECUTABLE = python3
|
2015-04-07 13:23:31 +02:00
|
|
|
|
2015-04-07 14:19:54 +02:00
|
|
|
-include useroptions.mak
|
|
|
|
|
2015-04-02 15:45:49 +02:00
|
|
|
###########################################################################
|
|
|
|
################## END USER-CONFIGURABLE OPTIONS ######################
|
|
|
|
###########################################################################
|
|
|
|
|
|
|
|
MAKEPARAMS := -R
|
|
|
|
|
2015-03-29 15:17:21 +02:00
|
|
|
#
|
|
|
|
# Determine running OS
|
|
|
|
#
|
|
|
|
|
|
|
|
ifeq ($(OS),Windows_NT)
|
2015-03-31 06:13:12 +02:00
|
|
|
OS := windows
|
|
|
|
GENIEOS := windows
|
2015-03-29 15:17:21 +02:00
|
|
|
else
|
2015-03-31 06:13:12 +02:00
|
|
|
UNAME := $(shell uname -mps)
|
|
|
|
GENIEOS := linux
|
2015-03-29 15:17:21 +02:00
|
|
|
ifeq ($(firstword $(filter Linux,$(UNAME))),Linux)
|
2015-03-31 06:13:12 +02:00
|
|
|
OS := linux
|
2015-03-29 15:17:21 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(firstword $(filter Solaris,$(UNAME))),Solaris)
|
2015-03-31 06:13:12 +02:00
|
|
|
OS := solaris
|
2015-03-29 15:17:21 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(firstword $(filter FreeBSD,$(UNAME))),FreeBSD)
|
2015-03-31 06:13:12 +02:00
|
|
|
OS := freebsd
|
2015-03-29 15:17:21 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(firstword $(filter GNU/kFreeBSD,$(UNAME))),GNU/kFreeBSD)
|
2015-03-31 06:13:12 +02:00
|
|
|
OS := freebsd
|
2015-03-29 15:17:21 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(firstword $(filter NetBSD,$(UNAME))),NetBSD)
|
2015-03-31 06:13:12 +02:00
|
|
|
OS := netbsd
|
2015-03-29 15:17:21 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(firstword $(filter OpenBSD,$(UNAME))),OpenBSD)
|
2015-03-31 06:13:12 +02:00
|
|
|
OS := openbsd
|
2015-03-29 15:17:21 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(firstword $(filter Darwin,$(UNAME))),Darwin)
|
2015-03-31 06:13:12 +02:00
|
|
|
OS := macosx
|
|
|
|
GENIEOS := darwin
|
2015-03-29 15:17:21 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(firstword $(filter Haiku,$(UNAME))),Haiku)
|
2015-03-31 06:13:12 +02:00
|
|
|
OS := haiku
|
2015-03-29 15:17:21 +02:00
|
|
|
endif
|
|
|
|
ifndef OS
|
|
|
|
$(error Unable to detect OS from uname -a: $(UNAME))
|
|
|
|
endif
|
2015-03-26 14:43:39 +01:00
|
|
|
endif
|
2007-12-17 16:19:59 +01:00
|
|
|
|
|
|
|
#-------------------------------------------------
|
|
|
|
# specify core target: mame, mess, etc.
|
|
|
|
# specify subtarget: mame, mess, tiny, etc.
|
2013-06-10 21:33:46 +02:00
|
|
|
# build rules will be included from
|
2007-12-17 16:19:59 +01:00
|
|
|
# src/$(TARGET)/$(SUBTARGET).mak
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
ifndef TARGET
|
2015-03-31 06:13:12 +02:00
|
|
|
TARGET := mame
|
2007-12-17 16:19:59 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifndef SUBTARGET
|
2015-03-31 06:13:12 +02:00
|
|
|
SUBTARGET := $(TARGET)
|
2007-12-17 16:19:59 +01:00
|
|
|
endif
|
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
CONFIG = release
|
|
|
|
ifdef DEBUG
|
2015-03-31 06:13:12 +02:00
|
|
|
CONFIG := debug
|
2008-02-22 01:17:36 +01:00
|
|
|
endif
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-04-02 15:45:49 +02:00
|
|
|
ifdef VERBOSE
|
|
|
|
MAKEPARAMS += verbose=1
|
|
|
|
else
|
|
|
|
SILENT := @
|
|
|
|
MAKEPARAMS += --no-print-directory
|
2015-03-26 09:00:39 +01:00
|
|
|
endif
|
2008-05-12 00:15:13 +02:00
|
|
|
|
2007-12-17 16:19:59 +01:00
|
|
|
#-------------------------------------------------
|
|
|
|
# specify OS target, which further differentiates
|
|
|
|
# the underlying OS; supported values are:
|
|
|
|
# win32, unix, macosx, os2
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
ifndef TARGETOS
|
2010-01-16 05:40:55 +01:00
|
|
|
|
2015-03-29 15:17:21 +02:00
|
|
|
ifeq ($(OS),windows)
|
2015-03-31 06:13:12 +02:00
|
|
|
TARGETOS := windows
|
|
|
|
WINDRES := windres
|
2015-03-26 09:00:39 +01:00
|
|
|
ifeq ($(PROCESSOR_ARCHITECTURE),AMD64)
|
2015-03-31 06:13:12 +02:00
|
|
|
ARCHITECTURE := _x64
|
2015-03-26 09:00:39 +01:00
|
|
|
endif
|
|
|
|
ifeq ($(PROCESSOR_ARCHITECTURE),x86)
|
2015-03-31 06:13:12 +02:00
|
|
|
ARCHITECTURE := _x64
|
2015-03-26 09:00:39 +01:00
|
|
|
ifeq ($(PROCESSOR_ARCHITEW6432),AMD64)
|
2010-01-19 22:53:06 +01:00
|
|
|
else
|
2015-03-31 06:13:12 +02:00
|
|
|
ARCHITECTURE := _x86
|
2015-03-26 09:00:39 +01:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
else
|
2015-03-31 06:13:12 +02:00
|
|
|
WINDRES := x86_64-w64-mingw32-windres
|
|
|
|
UNAME := $(shell uname -mps)
|
|
|
|
TARGETOS := $(OS)
|
2010-01-15 23:05:00 +01:00
|
|
|
|
2015-03-31 06:13:12 +02:00
|
|
|
ARCHITECTURE := _x86
|
2015-03-26 09:00:39 +01:00
|
|
|
|
2010-01-15 23:05:00 +01:00
|
|
|
ifeq ($(firstword $(filter x86_64,$(UNAME))),x86_64)
|
2015-03-31 06:13:12 +02:00
|
|
|
ARCHITECTURE := _x64
|
2010-01-15 22:05:29 +01:00
|
|
|
endif
|
2010-01-20 02:18:35 +01:00
|
|
|
ifeq ($(firstword $(filter amd64,$(UNAME))),amd64)
|
2015-03-31 06:13:12 +02:00
|
|
|
ARCHITECTURE := _x64
|
2010-01-15 22:05:29 +01:00
|
|
|
endif
|
2015-03-26 09:00:39 +01:00
|
|
|
ifeq ($(firstword $(filter ppc64,$(UNAME))),ppc64)
|
2015-03-31 06:13:12 +02:00
|
|
|
ARCHITECTURE := _x64
|
2010-01-16 14:02:03 +01:00
|
|
|
endif
|
|
|
|
endif
|
2010-01-16 05:40:55 +01:00
|
|
|
|
2015-03-29 03:29:22 +02:00
|
|
|
else
|
2015-03-31 06:13:12 +02:00
|
|
|
CROSS_BUILD := 1
|
2010-01-15 23:05:00 +01:00
|
|
|
endif # TARGET_OS
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-26 11:30:45 +01:00
|
|
|
ifdef PTR64
|
2015-03-27 08:16:44 +01:00
|
|
|
ifeq ($(PTR64),1)
|
2015-03-31 06:13:12 +02:00
|
|
|
ARCHITECTURE := _x64
|
2015-03-27 08:16:44 +01:00
|
|
|
else
|
2015-03-31 06:13:12 +02:00
|
|
|
ARCHITECTURE := _x86
|
2015-03-27 08:16:44 +01:00
|
|
|
endif
|
2015-03-26 11:30:45 +01:00
|
|
|
endif
|
|
|
|
|
2015-03-26 14:01:14 +01:00
|
|
|
|
2015-04-01 07:11:48 +02:00
|
|
|
ifeq ($(findstring arm,$(UNAME)),arm)
|
|
|
|
ifndef NOASM
|
|
|
|
NOASM := 1
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2015-04-02 13:22:19 +02:00
|
|
|
# Autodetect BIGENDIAN
|
|
|
|
# MacOSX
|
|
|
|
ifndef BIGENDIAN
|
|
|
|
ifneq (,$(findstring Power,$(UNAME)))
|
|
|
|
BIGENDIAN := 1
|
|
|
|
endif
|
|
|
|
# Linux
|
|
|
|
ifneq (,$(findstring ppc,$(UNAME)))
|
|
|
|
BIGENDIAN := 1
|
|
|
|
endif
|
|
|
|
endif # BIGENDIAN
|
|
|
|
|
2015-04-08 14:19:43 +02:00
|
|
|
ifndef PYTHON_EXECUTABLE
|
2015-04-08 16:24:07 +02:00
|
|
|
PYTHON := python
|
2015-04-08 14:19:43 +02:00
|
|
|
else
|
2015-04-08 16:24:07 +02:00
|
|
|
PYTHON := $(PYTHON_EXECUTABLE)
|
2015-04-08 14:19:43 +02:00
|
|
|
endif
|
2015-03-31 06:13:12 +02:00
|
|
|
CC := $(SILENT)gcc
|
|
|
|
LD := $(SILENT)g++
|
2015-03-26 14:01:14 +01:00
|
|
|
|
2015-03-29 15:17:21 +02:00
|
|
|
#-------------------------------------------------
|
|
|
|
# specify OSD layer: windows, sdl, etc.
|
|
|
|
# build rules will be included from
|
|
|
|
# src/osd/$(OSD)/$(OSD).mak
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
ifndef OSD
|
|
|
|
|
2015-03-31 06:13:12 +02:00
|
|
|
OSD := osdmini
|
2015-03-29 15:17:21 +02:00
|
|
|
|
|
|
|
ifeq ($(TARGETOS),windows)
|
2015-03-31 06:13:12 +02:00
|
|
|
OSD := windows
|
2015-03-29 15:17:21 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(TARGETOS),linux)
|
2015-03-31 06:13:12 +02:00
|
|
|
OSD := sdl
|
2015-03-29 15:17:21 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(TARGETOS),macosx)
|
2015-03-31 06:13:12 +02:00
|
|
|
OSD := sdl
|
2015-03-29 15:17:21 +02:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2015-03-26 14:01:14 +01:00
|
|
|
#-------------------------------------------------
|
|
|
|
# distribution may change things
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
ifeq ($(DISTRO),)
|
2015-03-31 06:13:12 +02:00
|
|
|
DISTRO := generic
|
2015-03-26 14:01:14 +01:00
|
|
|
else
|
|
|
|
ifeq ($(DISTRO),debian-stable)
|
|
|
|
else
|
|
|
|
$(error DISTRO $(DISTRO) unknown)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2015-03-26 14:47:10 +01:00
|
|
|
PARAMS+= --distro=$(DISTRO)
|
|
|
|
|
2015-03-27 15:11:41 +01:00
|
|
|
ifdef OVERRIDE_CC
|
2015-03-31 06:13:12 +02:00
|
|
|
PARAMS += --CC='$(OVERRIDE_CC)'
|
2015-03-29 03:29:22 +02:00
|
|
|
ifndef CROSS_BUILD
|
2015-03-31 06:13:12 +02:00
|
|
|
CC := $(OVERRIDE_CC)
|
2015-03-27 15:11:41 +01:00
|
|
|
endif
|
2015-03-29 03:29:22 +02:00
|
|
|
endif
|
2015-03-27 15:11:41 +01:00
|
|
|
ifdef OVERRIDE_CXX
|
2015-03-31 06:13:12 +02:00
|
|
|
PARAMS += --CXX='$(OVERRIDE_CXX)'
|
2015-03-29 03:29:22 +02:00
|
|
|
ifndef CROSS_BUILD
|
2015-03-31 06:13:12 +02:00
|
|
|
CXX := $(OVERRIDE_CXX)
|
2015-03-27 15:11:41 +01:00
|
|
|
endif
|
2015-03-29 03:29:22 +02:00
|
|
|
endif
|
2015-03-27 15:11:41 +01:00
|
|
|
ifdef OVERRIDE_LD
|
2015-03-31 06:13:12 +02:00
|
|
|
PARAMS += --LD='$(OVERRIDE_LD)'
|
2015-03-29 03:29:22 +02:00
|
|
|
ifndef CROSS_BUILD
|
2015-03-31 06:13:12 +02:00
|
|
|
LD := $(OVERRIDE_LD)
|
2015-03-27 15:11:41 +01:00
|
|
|
endif
|
2015-03-29 03:29:22 +02:00
|
|
|
endif
|
2015-03-27 15:11:41 +01:00
|
|
|
|
2015-03-26 15:45:59 +01:00
|
|
|
#-------------------------------------------------
|
|
|
|
# sanity check the configuration
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
# enable symbols as it is useless without them
|
|
|
|
ifdef SANITIZE
|
|
|
|
SYMBOLS = 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
# profiler defaults to on for DEBUG builds
|
|
|
|
ifdef DEBUG
|
|
|
|
ifndef PROFILER
|
|
|
|
PROFILER = 1
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
# allow gprof profiling as well, which overrides the internal PROFILER
|
|
|
|
# also enable symbols as it is useless without them
|
|
|
|
ifdef PROFILE
|
|
|
|
PROFILER =
|
|
|
|
SYMBOLS = 1
|
2015-03-29 16:18:52 +02:00
|
|
|
OPTIMIZE = 3
|
2015-03-26 15:45:59 +01:00
|
|
|
ifndef SYMLEVEL
|
|
|
|
SYMLEVEL = 1
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
# specify a default optimization level if none explicitly stated
|
|
|
|
ifndef OPTIMIZE
|
|
|
|
ifndef SYMBOLS
|
|
|
|
OPTIMIZE = 3
|
|
|
|
else
|
|
|
|
OPTIMIZE = 0
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
# set the symbols level
|
|
|
|
ifdef SYMBOLS
|
|
|
|
ifndef SYMLEVEL
|
|
|
|
SYMLEVEL = 2
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2015-03-29 15:17:21 +02:00
|
|
|
ifdef TOOLS
|
2015-03-31 06:13:12 +02:00
|
|
|
PARAMS += --with-tools
|
2015-03-29 15:17:21 +02:00
|
|
|
endif
|
|
|
|
|
2015-03-26 15:45:59 +01:00
|
|
|
ifdef SYMBOLS
|
2015-04-02 13:22:19 +02:00
|
|
|
PARAMS += --SYMBOLS='$(SYMBOLS)'
|
2015-03-26 15:45:59 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef SYMLEVEL
|
2015-04-02 13:22:19 +02:00
|
|
|
PARAMS += --SYMLEVEL='$(SYMLEVEL)'
|
2015-03-26 15:45:59 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef PROFILER
|
2015-04-02 13:22:19 +02:00
|
|
|
PARAMS += --PROFILER='$(PROFILER)'
|
2015-03-26 15:45:59 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef PROFILE
|
2015-04-02 13:22:19 +02:00
|
|
|
PARAMS += --PROFILE='$(PROFILE)'
|
2015-03-26 15:45:59 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef OPTIMIZE
|
2015-03-31 06:13:12 +02:00
|
|
|
PARAMS += --OPTIMIZE=$(OPTIMIZE)
|
2015-03-26 15:45:59 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef ARCHOPTS
|
2015-03-31 06:13:12 +02:00
|
|
|
PARAMS += --ARCHOPTS='$(ARCHOPTS)'
|
2015-03-26 15:45:59 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef MAP
|
2015-04-01 07:11:48 +02:00
|
|
|
PARAMS += --MAP='$(MAP)'
|
2015-03-26 15:45:59 +01:00
|
|
|
endif
|
|
|
|
|
2015-03-27 17:19:57 +01:00
|
|
|
ifdef USE_BGFX
|
2015-04-01 07:11:48 +02:00
|
|
|
PARAMS += --USE_BGFX='$(USE_BGFX)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef NOASM
|
|
|
|
PARAMS += --NOASM='$(NOASM)'
|
|
|
|
endif
|
|
|
|
|
2015-04-02 13:22:19 +02:00
|
|
|
ifdef BIGENDIAN
|
|
|
|
PARAMS += --BIGENDIAN='$(BIGENDIAN)'
|
|
|
|
endif
|
|
|
|
|
2015-04-01 07:11:48 +02:00
|
|
|
ifdef FORCE_DRC_C_BACKEND
|
|
|
|
PARAMS += --FORCE_DRC_C_BACKEND='$(FORCE_DRC_C_BACKEND)'
|
2015-03-27 17:19:57 +01:00
|
|
|
endif
|
2015-03-28 07:03:44 +01:00
|
|
|
|
|
|
|
ifdef NOWERROR
|
2015-04-02 13:22:19 +02:00
|
|
|
PARAMS += --NOWERROR='$(NOWERROR)'
|
2015-03-28 07:03:44 +01:00
|
|
|
endif
|
|
|
|
|
2015-03-28 12:50:15 +01:00
|
|
|
ifdef TARGET
|
2015-04-02 13:22:19 +02:00
|
|
|
PARAMS += --target='$(TARGET)'
|
2015-03-28 12:50:15 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef SUBTARGET
|
2015-04-02 13:22:19 +02:00
|
|
|
PARAMS += --subtarget='$(SUBTARGET)'
|
2015-03-28 12:50:15 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef OSD
|
2015-04-02 13:22:19 +02:00
|
|
|
PARAMS += --osd='$(OSD)'
|
2015-03-28 12:50:15 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef TARGETOS
|
2015-04-02 13:22:19 +02:00
|
|
|
PARAMS += --targetos='$(TARGETOS)'
|
2015-03-28 12:50:15 +01:00
|
|
|
endif
|
|
|
|
|
2015-03-31 18:44:38 +02:00
|
|
|
ifdef DONT_USE_NETWORK
|
|
|
|
PARAMS += --DONT_USE_NETWORK='$(DONT_USE_NETWORK)'
|
|
|
|
endif
|
|
|
|
|
2015-03-31 15:41:59 +02:00
|
|
|
ifdef NO_OPENGL
|
|
|
|
PARAMS += --NO_OPENGL='$(NO_OPENGL)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef USE_DISPATCH_GL
|
|
|
|
PARAMS += --USE_DISPATCH_GL='$(USE_DISPATCH_GL)'
|
|
|
|
endif
|
|
|
|
|
2015-03-31 22:29:40 +02:00
|
|
|
ifdef NO_USE_MIDI
|
|
|
|
PARAMS += --NO_USE_MIDI='$(NO_USE_MIDI)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef USE_QTDEBUG
|
|
|
|
PARAMS += --USE_QTDEBUG='$(USE_QTDEBUG)'
|
|
|
|
endif
|
|
|
|
|
2015-04-01 00:49:08 +02:00
|
|
|
ifdef DIRECTINPUT
|
|
|
|
PARAMS += --DIRECTINPUT='$(DIRECTINPUT)'
|
|
|
|
endif
|
|
|
|
|
2015-04-04 05:53:47 +02:00
|
|
|
ifdef USE_SDL
|
|
|
|
PARAMS += --USE_SDL='$(USE_SDL)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef CYGWIN_BUILD
|
|
|
|
PARAMS += --CYGWIN_BUILD='$(CYGWIN_BUILD)'
|
|
|
|
endif
|
|
|
|
|
2015-03-31 16:00:23 +02:00
|
|
|
ifdef MESA_INSTALL_ROOT
|
|
|
|
PARAMS += --MESA_INSTALL_ROOT='$(MESA_INSTALL_ROOT)'
|
|
|
|
endif
|
|
|
|
|
2015-03-31 09:34:57 +02:00
|
|
|
ifdef NO_X11
|
|
|
|
PARAMS += --NO_X11='$(NO_X11)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef NO_USE_XINPUT
|
|
|
|
PARAMS += --NO_USE_XINPUT='$(NO_USE_XINPUT)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef SDL_LIBVER
|
|
|
|
PARAMS += --SDL_LIBVER='$(SDL_LIBVER)'
|
|
|
|
endif
|
|
|
|
|
2015-03-31 18:02:58 +02:00
|
|
|
ifdef SDL2_MULTIAPI
|
|
|
|
PARAMS += --SDL2_MULTIAPI='$(SDL2_MULTIAPI)'
|
|
|
|
endif
|
|
|
|
|
2015-03-31 09:34:57 +02:00
|
|
|
ifdef SDL_INSTALL_ROOT
|
|
|
|
PARAMS += --SDL_INSTALL_ROOT='$(SDL_INSTALL_ROOT)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef SDL_FRAMEWORK_PATH
|
|
|
|
PARAMS += --SDL_FRAMEWORK_PATH='$(SDL_FRAMEWORK_PATH)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef MACOSX_USE_LIBSDL
|
|
|
|
PARAMS += --MACOSX_USE_LIBSDL='$(MACOSX_USE_LIBSDL)'
|
|
|
|
endif
|
|
|
|
|
2015-03-29 18:58:39 +02:00
|
|
|
ifdef LDOPTS
|
2015-03-31 06:13:12 +02:00
|
|
|
PARAMS += --LDOPTS='$(LDOPTS)'
|
2015-03-29 18:58:39 +02:00
|
|
|
endif
|
|
|
|
|
2015-04-06 16:27:14 +02:00
|
|
|
ifdef LTO
|
|
|
|
PARAMS += --LTO='$(LTO)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef DEPRECATED
|
|
|
|
PARAMS += --DEPRECATED='$(DEPRECATED)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef SSE2
|
|
|
|
PARAMS += --SSE2='$(SSE2)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef OPENMP
|
|
|
|
PARAMS += --OPENMP='$(OPENMP)'
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef CPP11
|
|
|
|
PARAMS += --CPP11='$(CPP11)'
|
|
|
|
endif
|
|
|
|
|
2015-04-06 16:33:21 +02:00
|
|
|
ifdef FASTDEBUG
|
|
|
|
PARAMS += --FASTDEBUG='$(FASTDEBUG)'
|
|
|
|
endif
|
|
|
|
|
2015-04-07 13:23:31 +02:00
|
|
|
ifdef FILTER_DEPS
|
|
|
|
PARAMS += --FILTER_DEPS='$(FILTER_DEPS)'
|
|
|
|
endif
|
|
|
|
|
2015-04-08 08:52:02 +02:00
|
|
|
ifdef SEPARATE_BIN
|
|
|
|
PARAMS += --SEPARATE_BIN='$(SEPARATE_BIN)'
|
|
|
|
endif
|
2015-04-07 13:23:31 +02:00
|
|
|
|
2015-04-08 14:19:43 +02:00
|
|
|
ifdef PYTHON_EXECUTABLE
|
|
|
|
PARAMS += --PYTHON_EXECUTABLE='$(PYTHON_EXECUTABLE)'
|
|
|
|
endif
|
|
|
|
|
2015-03-30 00:50:56 +02:00
|
|
|
#-------------------------------------------------
|
|
|
|
# All scripts
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
2015-03-30 05:19:54 +02:00
|
|
|
|
2015-03-30 00:50:56 +02:00
|
|
|
SCRIPTS = scripts/genie.lua \
|
|
|
|
scripts/src/lib.lua \
|
|
|
|
scripts/src/emu.lua \
|
|
|
|
scripts/src/machine.lua \
|
|
|
|
scripts/src/main.lua \
|
|
|
|
scripts/src/3rdparty.lua \
|
|
|
|
scripts/src/cpu.lua \
|
2015-04-04 16:46:12 +02:00
|
|
|
scripts/src/osd/modules.lua \
|
2015-03-30 05:19:54 +02:00
|
|
|
$(wildcard scripts/src/osd/$(OSD)*.lua) \
|
2015-03-30 00:50:56 +02:00
|
|
|
scripts/src/sound.lua \
|
|
|
|
scripts/src/tools.lua \
|
|
|
|
scripts/src/video.lua \
|
|
|
|
scripts/src/bus.lua \
|
|
|
|
scripts/src/netlist.lua \
|
|
|
|
scripts/toolchain.lua \
|
2015-04-04 16:42:58 +02:00
|
|
|
scripts/src/osd/modules.lua \
|
2015-03-30 09:29:59 +02:00
|
|
|
scripts/target/$(TARGET)/$(SUBTARGET).lua \
|
|
|
|
$(wildcard src/osd/$(OSD)/$(OSD).mak) \
|
|
|
|
$(wildcard src/$(TARGET)/$(SUBTARGET).mak)
|
2015-03-30 05:19:54 +02:00
|
|
|
ifdef REGENIE
|
|
|
|
SCRIPTS+= regenie
|
|
|
|
endif
|
2015-03-30 00:50:56 +02:00
|
|
|
|
|
|
|
#-------------------------------------------------
|
|
|
|
# Dependent stuff
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
2007-12-17 16:19:59 +01:00
|
|
|
# extension for executables
|
2015-03-31 06:13:12 +02:00
|
|
|
EXE :=
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-29 03:29:22 +02:00
|
|
|
ifeq ($(OS),windows)
|
2015-03-31 06:13:12 +02:00
|
|
|
EXE := .exe
|
2007-12-17 16:19:59 +01:00
|
|
|
endif
|
2015-03-29 03:29:22 +02:00
|
|
|
ifeq ($(OS),os2)
|
2015-03-31 06:13:12 +02:00
|
|
|
EXE := .exe
|
2007-12-17 16:19:59 +01:00
|
|
|
endif
|
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
SHELLTYPE := msdos
|
|
|
|
ifeq (,$(ComSpec)$(COMSPEC))
|
|
|
|
SHELLTYPE := posix
|
2007-12-17 16:19:59 +01:00
|
|
|
endif
|
2015-03-26 09:00:39 +01:00
|
|
|
ifeq (/bin,$(findstring /bin,$(SHELL)))
|
|
|
|
SHELLTYPE := posix
|
2009-02-28 23:10:06 +01:00
|
|
|
endif
|
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
ifeq (posix,$(SHELLTYPE))
|
|
|
|
MKDIR = $(SILENT) mkdir -p "$(1)"
|
|
|
|
COPY = $(SILENT) cp -fR "$(1)" "$(2)"
|
2007-12-17 16:19:59 +01:00
|
|
|
else
|
2015-03-26 09:00:39 +01:00
|
|
|
MKDIR = $(SILENT) mkdir "$(subst /,\\,$(1))" 2> nul || exit 0
|
|
|
|
COPY = $(SILENT) copy /Y "$(subst /,\\,$(1))" "$(subst /,\\,$(2))"
|
2007-12-17 16:19:59 +01:00
|
|
|
endif
|
|
|
|
|
2015-03-26 11:17:59 +01:00
|
|
|
GENDIR = build/generated
|
2007-12-17 16:19:59 +01:00
|
|
|
|
|
|
|
# all sources are under the src/ directory
|
|
|
|
SRC = src
|
|
|
|
|
2015-01-10 11:51:23 +01:00
|
|
|
# all 3rd party sources are under the 3rdparty/ directory
|
|
|
|
3RDPARTY = 3rdparty
|
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
ifeq ($(OS),windows)
|
2015-03-31 06:13:12 +02:00
|
|
|
GCC_VERSION := $(shell gcc -dumpversion 2> NUL)
|
|
|
|
CLANG_VERSION := $(shell %CLANG%\bin\clang --version 2> NUL| head -n 1 | sed "s/[^0-9,.]//g")
|
2015-04-08 14:19:43 +02:00
|
|
|
PYTHON_AVAILABLE := $(shell $(PYTHON) --version > NUL 2>&1 && echo python)
|
2015-03-31 06:13:12 +02:00
|
|
|
CHECK_CLANG :=
|
2015-03-26 09:00:39 +01:00
|
|
|
else
|
2015-03-31 06:13:12 +02:00
|
|
|
GCC_VERSION := $(shell $(subst @,,$(CC)) -dumpversion 2> /dev/null)
|
|
|
|
CLANG_VERSION := $(shell clang --version 2> /dev/null | grep 'LLVM [0-9]\.[0-9]' -o | grep '[0-9]\.[0-9]' -o | head -n 1)
|
2015-04-08 14:19:43 +02:00
|
|
|
PYTHON_AVAILABLE := $(shell $(PYTHON) --version > /dev/null 2>&1 && echo python)
|
2015-03-31 06:13:12 +02:00
|
|
|
CHECK_CLANG := $(shell gcc --version 2> /dev/null | grep 'clang' | head -n 1)
|
2015-03-26 19:07:46 +01:00
|
|
|
endif
|
2015-03-27 14:36:13 +01:00
|
|
|
|
|
|
|
ifeq ($(TARGETOS),macosx)
|
|
|
|
ifneq (,$(findstring 3.,$(CLANG_VERSION)))
|
2015-03-29 19:10:34 +02:00
|
|
|
ifeq ($(ARCHITECTURE),_x64)
|
2015-03-31 06:13:12 +02:00
|
|
|
ARCHITECTURE := _x64_clang
|
2015-03-26 19:07:46 +01:00
|
|
|
else
|
2015-03-31 06:13:12 +02:00
|
|
|
ARCHITECTURE := _x86_clang
|
2015-03-26 19:07:46 +01:00
|
|
|
endif
|
2015-03-26 09:00:39 +01:00
|
|
|
endif
|
2015-03-27 14:36:13 +01:00
|
|
|
endif
|
|
|
|
|
2015-04-08 16:24:07 +02:00
|
|
|
ifneq ($(PYTHON_AVAILABLE),python)
|
|
|
|
$(error Python is not available in path)
|
|
|
|
endif
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-31 06:13:12 +02:00
|
|
|
GENIE := 3rdparty/genie/bin/$(GENIEOS)/genie$(EXE)
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-27 08:06:15 +01:00
|
|
|
ifeq ($(TARGET),$(SUBTARGET))
|
2015-03-31 06:13:12 +02:00
|
|
|
SUBDIR := $(OSD)/$(TARGET)
|
2015-03-27 08:06:15 +01:00
|
|
|
else
|
2015-03-31 06:13:12 +02:00
|
|
|
SUBDIR := $(OSD)/$(TARGET)$(SUBTARGET)
|
2015-03-27 08:06:15 +01:00
|
|
|
endif
|
2015-03-31 06:13:12 +02:00
|
|
|
PROJECTDIR := build/projects/$(SUBDIR)
|
2015-03-27 08:06:15 +01:00
|
|
|
|
2015-03-30 05:19:54 +02:00
|
|
|
.PHONY: all clean regenie generate
|
2015-03-29 15:17:21 +02:00
|
|
|
all: $(GENIE) $(TARGETOS)$(ARCHITECTURE)
|
2015-03-30 05:19:54 +02:00
|
|
|
regenie:
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-30 05:19:54 +02:00
|
|
|
#-------------------------------------------------
|
|
|
|
# gmake-mingw64-gcc
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
2015-03-30 14:37:10 +02:00
|
|
|
$(PROJECTDIR)/gmake-mingw64-gcc/Makefile: makefile $(SCRIPTS) $(GENIE)
|
2015-03-26 09:00:39 +01:00
|
|
|
ifndef MINGW64
|
|
|
|
$(error MINGW64 is not set)
|
2007-12-17 16:19:59 +01:00
|
|
|
endif
|
2015-04-08 16:24:07 +02:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --gcc=mingw64-gcc --gcc_version=$(GCC_VERSION) gmake
|
2015-03-30 05:19:54 +02:00
|
|
|
|
|
|
|
.PHONY: windows_x64
|
|
|
|
windows_x64: generate $(PROJECTDIR)/gmake-mingw64-gcc/Makefile
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-mingw64-gcc config=$(CONFIG)64 WINDRES=$(WINDRES)
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-30 05:19:54 +02:00
|
|
|
#-------------------------------------------------
|
|
|
|
# gmake-mingw32-gcc
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
.PHONY: windows
|
2015-03-29 15:17:21 +02:00
|
|
|
windows: windows_x86
|
|
|
|
|
2015-03-30 14:37:10 +02:00
|
|
|
$(PROJECTDIR)/gmake-mingw32-gcc/Makefile: makefile $(SCRIPTS) $(GENIE)
|
2015-03-26 09:00:39 +01:00
|
|
|
ifndef MINGW32
|
|
|
|
$(error MINGW32 is not set)
|
2007-12-17 16:19:59 +01:00
|
|
|
endif
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --gcc=mingw32-gcc --gcc_version=$(GCC_VERSION) gmake
|
2015-03-30 05:19:54 +02:00
|
|
|
|
|
|
|
.PHONY: windows_x86
|
|
|
|
windows_x86: generate $(PROJECTDIR)/gmake-mingw32-gcc/Makefile
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-mingw32-gcc config=$(CONFIG)32 WINDRES=$(WINDRES)
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-30 05:19:54 +02:00
|
|
|
#-------------------------------------------------
|
|
|
|
# gmake-mingw-clang
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
2015-03-30 14:37:10 +02:00
|
|
|
$(PROJECTDIR)/gmake-mingw-clang/Makefile: makefile $(SCRIPTS) $(GENIE)
|
2015-03-26 09:00:39 +01:00
|
|
|
ifndef CLANG
|
|
|
|
$(error CLANG is not set)
|
2015-03-20 14:18:58 +01:00
|
|
|
endif
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --gcc=mingw-clang --gcc_version=$(CLANG_VERSION) gmake
|
2015-03-30 05:19:54 +02:00
|
|
|
|
|
|
|
.PHONY: windows_x64_clang
|
|
|
|
windows_x64_clang: generate $(PROJECTDIR)/gmake-mingw-clang/Makefile
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-mingw-clang config=$(CONFIG)64 WINDRES=$(WINDRES)
|
2015-04-08 16:24:07 +02:00
|
|
|
|
2015-03-30 05:19:54 +02:00
|
|
|
.PHONY: windows_x86_clang
|
|
|
|
windows_x86_clang: generate $(PROJECTDIR)/gmake-mingw-clang/Makefile
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-mingw-clang config=$(CONFIG)32 WINDRES=$(WINDRES)
|
2012-03-29 23:56:18 +02:00
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
vs2010: generate
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) vs2010
|
Move devices into a proper hierarchy and handle naming
and paths consistently for devices, I/O ports, memory
regions, memory banks, and memory shares. [Aaron Giles]
NOTE: there are likely regressions lurking here, mostly
due to devices not being properly found. I have temporarily
added more logging to -verbose to help understand what's
going on. Please let me know ASAP if anything that is being
actively worked on got broken.
As before, the driver device is the root device and all
other devices are owned by it. Previously all devices
were kept in a single master list, and the hierarchy was
purely logical. With this change, each device owns its
own list of subdevices, and the hierarchy is explicitly
manifest. This means when a device is removed, all of its
subdevices are automatically removed as well.
A side effect of this is that walking the device list is
no longer simple. To address this, a new set of iterator
classes is provided, which walks the device tree in a depth
first manner. There is a general device_iterator class for
walking all devices, plus templates for a device_type_iterator
and a device_interface_iterator which are used to build
iterators for identifying only devices of a given type or
with a given interface. Typedefs for commonly-used cases
(e.g., screen_device_iterator, memory_interface_iterator)
are provided. Iterators can also provide counts, and can
perform indexed lookups.
All device name lookups are now done relative to another
device. The maching_config and running_machine classes now
have a root_device() method to get the root of the hierarchy.
The existing machine->device("name") is now equivalent to
machine->root_device().subdevice("name").
A proper and normalized device path structure is now
supported. Device names that start with a colon are
treated as absolute paths from the root device. Device
names can also use a caret (^) to refer to the owning
device. Querying the device's tag() returns the device's
full path from the root. A new method basetag() returns
just the final tag.
The new pathing system is built on top of the
device_t::subtag() method, so anyone using that will
automatically support the new pathing rules. Each device
has its own internal map to cache successful lookups so
that subsequent lookups should be very fast.
Updated every place I could find that referenced devices,
memory regions, I/O ports, memory banks and memory shares
to leverage subtag/subdevice (or siblingtag/siblingdevice
which are built on top).
Removed the device_list class, as it doesn't apply any
more. Moved some of its methods into running_machine
instead.
Simplified the device callback system since the new
pathing can describe all of the special-case devices that
were previously handled manually.
Changed the core output function callbacks to be delegates.
Completely rewrote the validity checking mechanism. The
validity checker is now a proper C++ class, and temporarily
takes over the error and warning outputs. All errors and
warnings are collected during a session, and then output in
a consistent manner, with an explicit driver and source file
listed for each one, as well as additional device and/or
I/O port contexts where appropriate. Validity checkers
should no longer explicitly output this information, just
the error, assuming that the context is provided.
Rewrote the software_list_device as a modern device, getting
rid of the software_list_config abstraction and simplifying
things.
Changed the way FLAC compiles so that it works like other
external libraries, and also compiles successfully for MSVC
builds.
2012-01-24 21:18:55 +01:00
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
vs2012: generate
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) vs2012
|
2015-01-13 18:44:26 +01:00
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
vs2012_intel: generate
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --vs=intel-15 vs2012
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
vs2012_xp: generate
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --vs=vs2012-xp vs2012
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
vs2013: generate
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) vs2013
|
2007-12-17 17:37:57 +01:00
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
vs2013_intel: generate
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --vs=intel-15 vs2013
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
vs2013_xp: generate
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --vs=vs2013-xp vs2013
|
2015-01-08 10:21:18 +01:00
|
|
|
|
2015-04-06 18:50:42 +02:00
|
|
|
vs2013_clang: generate
|
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --vs=vs2013-clang vs2013
|
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
vs2015: generate
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) vs2015
|
2008-04-02 10:28:58 +02:00
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
android-arm: generate
|
|
|
|
ifndef ANDROID_NDK_ARM
|
|
|
|
$(error ANDROID_NDK_ARM is not set)
|
2013-08-22 11:40:15 +02:00
|
|
|
endif
|
2015-03-26 09:00:39 +01:00
|
|
|
ifndef ANDROID_NDK_ROOT
|
|
|
|
$(error ANDROID_NDK_ROOT is not set)
|
2007-12-17 16:19:59 +01:00
|
|
|
endif
|
2015-03-26 09:00:39 +01:00
|
|
|
ifndef COMPILE
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --gcc=android-arm --gcc_version=4.8 gmake
|
2010-01-13 04:49:37 +01:00
|
|
|
endif
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-android-arm config=$(CONFIG)
|
ioport.c C++ conversion. Mostly internal changes, with no
intended differences from previous behavior. For drivers,
the main change is that input_port_read() no longer exists.
Instead, the port must be fetched from the appropriate device,
and then read() is called.
For member functions, this is actually simpler/cleaner:
value = ioport("tag")->read()
For legacy functions which have a driver_data state, it goes:
value = state->ioport("tag")->read()
For other legacy functions, they need to fetch the root device:
value = machine.root_device().ioport("tag")->read()
The other big change for drivers is that IPT_VBLANK is gone.
Instead, it has been replaced by a device line callback on the
screen device. There's a new macro PORT_VBLANK("tag") which
automatically points things to the right spot.
Here's a set of imperfect search & replace strings to convert
the input_port_read calls and fix up IPT_VBLANK:
input_port_read( *\( *)(machine\(\)) *, *([^)]+ *\))
ioport\1\3->read\(\)
input_port_read( *\( *)(.*machine[()]*) *, *([^)]+ *\))
\2\.root_device\(\)\.ioport\1\3->read\(\)
(state = .*driver_data[^}]+)space->machine\(\)\.root_device\(\)\.
\1state->
(state = .*driver_data[^}]+)device->machine\(\)\.root_device\(\)\.
\1state->
input_port_read_safe( *\( *)(machine\(\)) *, *([^,]+), *([^)]+\))
ioport\1\3->read_safe\(\4\)
IPT_VBLANK( *\))
IPT_CUSTOM\1 PORT_VBLANK("screen")
2012-05-03 11:00:08 +02:00
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
android-mips: generate
|
|
|
|
ifndef ANDROID_NDK_MIPS
|
|
|
|
$(error ANDROID_NDK_MIPS is not set)
|
2013-08-02 11:48:25 +02:00
|
|
|
endif
|
2015-03-26 09:00:39 +01:00
|
|
|
ifndef ANDROID_NDK_ROOT
|
|
|
|
$(error ANDROID_NDK_ROOT is not set)
|
2010-01-13 04:49:37 +01:00
|
|
|
endif
|
2015-03-26 09:00:39 +01:00
|
|
|
ifndef COMPILE
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --gcc=android-mips --gcc_version=4.8 gmake
|
2014-04-07 11:28:49 +02:00
|
|
|
endif
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-android-mips config=$(CONFIG)
|
2014-04-07 11:28:49 +02:00
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
android-x86: generate
|
|
|
|
ifndef ANDROID_NDK_X86
|
|
|
|
$(error ANDROID_NDK_X86 is not set)
|
2014-10-01 11:17:09 +02:00
|
|
|
endif
|
2015-03-26 09:00:39 +01:00
|
|
|
ifndef ANDROID_NDK_ROOT
|
|
|
|
$(error ANDROID_NDK_ROOT is not set)
|
2013-05-04 11:54:42 +02:00
|
|
|
endif
|
2015-03-26 09:00:39 +01:00
|
|
|
ifndef COMPILE
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --gcc=android-x86 --gcc_version=4.8 gmake
|
2013-05-04 11:48:04 +02:00
|
|
|
endif
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-android-x86 config=$(CONFIG)
|
2010-06-12 01:07:16 +02:00
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
asmjs: generate
|
|
|
|
ifndef EMSCRIPTEN
|
|
|
|
$(error EMSCRIPTEN is not set)
|
2010-02-14 18:44:34 +01:00
|
|
|
endif
|
2015-03-26 09:00:39 +01:00
|
|
|
ifndef COMPILE
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --gcc=asmjs --gcc_version=4.8 gmake
|
2010-02-14 18:44:34 +01:00
|
|
|
endif
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-asmjs config=$(CONFIG)
|
2010-02-14 18:44:34 +01:00
|
|
|
|
2015-03-29 15:17:21 +02:00
|
|
|
|
|
|
|
nacl: nacl_x86
|
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
nacl_x64: generate
|
|
|
|
ifndef NACL_SDK_ROOT
|
|
|
|
$(error NACL_SDK_ROOT is not set)
|
2010-01-13 04:49:37 +01:00
|
|
|
endif
|
2015-03-26 09:00:39 +01:00
|
|
|
ifndef COMPILE
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --gcc=nacl --gcc_version=4.8 gmake
|
2010-01-13 04:49:37 +01:00
|
|
|
endif
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-nacl config=$(CONFIG)64
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
nacl_x86: generate
|
|
|
|
ifndef NACL_SDK_ROOT
|
|
|
|
$(error NACL_SDK_ROOT is not set)
|
2007-12-17 16:19:59 +01:00
|
|
|
endif
|
2015-03-26 09:00:39 +01:00
|
|
|
ifndef COMPILE
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --gcc=nacl --gcc_version=4.8 gmake
|
2015-03-26 09:00:39 +01:00
|
|
|
endif
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-nacl config=$(CONFIG)32
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
nacl-arm: generate
|
|
|
|
ifndef NACL_SDK_ROOT
|
|
|
|
$(error NACL_SDK_ROOT is not set)
|
2007-12-17 16:19:59 +01:00
|
|
|
endif
|
2015-03-26 09:00:39 +01:00
|
|
|
ifndef COMPILE
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --gcc=nacl-arm --gcc_version=4.8 gmake
|
2007-12-17 16:19:59 +01:00
|
|
|
endif
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-nacl-arm config=$(CONFIG)
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
pnacl: generate
|
|
|
|
ifndef NACL_SDK_ROOT
|
|
|
|
$(error NACL_SDK_ROOT is not set)
|
2013-08-02 11:48:25 +02:00
|
|
|
endif
|
2015-03-26 09:00:39 +01:00
|
|
|
ifndef COMPILE
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --gcc=pnacl --gcc_version=4.8 gmake
|
2013-08-02 11:48:25 +02:00
|
|
|
endif
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-pnacl config=$(CONFIG)
|
2013-08-02 11:48:25 +02:00
|
|
|
|
2015-03-30 00:50:56 +02:00
|
|
|
#-------------------------------------------------
|
2015-03-30 05:19:54 +02:00
|
|
|
# gmake-linux
|
2015-03-30 00:50:56 +02:00
|
|
|
#-------------------------------------------------
|
|
|
|
|
2015-03-30 14:37:10 +02:00
|
|
|
$(PROJECTDIR)/gmake-linux/Makefile: makefile $(SCRIPTS) $(GENIE)
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --gcc=linux-gcc --gcc_version=$(GCC_VERSION) gmake
|
2015-03-30 00:50:56 +02:00
|
|
|
|
2015-03-30 05:19:54 +02:00
|
|
|
.PHONY: linux_x64
|
2015-03-30 00:50:56 +02:00
|
|
|
linux_x64: generate $(PROJECTDIR)/gmake-linux/Makefile
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-linux config=$(CONFIG)64
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-30 05:19:54 +02:00
|
|
|
.PHONY: linux
|
2015-03-29 15:17:21 +02:00
|
|
|
linux: linux_x86
|
|
|
|
|
2015-03-30 05:19:54 +02:00
|
|
|
.PHONY: linux_x86
|
2015-03-30 00:50:56 +02:00
|
|
|
linux_x86: generate $(PROJECTDIR)/gmake-linux/Makefile
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-linux config=$(CONFIG)32
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-30 00:50:56 +02:00
|
|
|
#-------------------------------------------------
|
2015-03-30 05:19:54 +02:00
|
|
|
# gmake-linux-clang
|
2015-03-30 00:50:56 +02:00
|
|
|
#-------------------------------------------------
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-30 14:37:10 +02:00
|
|
|
$(PROJECTDIR)/gmake-linux-clang/Makefile: makefile $(SCRIPTS) $(GENIE)
|
2015-03-28 12:50:15 +01:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --gcc=linux-clang --gcc_version=$(CLANG_VERSION) gmake
|
2015-03-30 00:50:56 +02:00
|
|
|
|
2015-03-30 05:19:54 +02:00
|
|
|
.PHONY: linux_x64_clang
|
2015-03-30 00:50:56 +02:00
|
|
|
linux_x64_clang: generate $(PROJECTDIR)/gmake-linux-clang/Makefile
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-linux-clang config=$(CONFIG)64
|
2015-03-30 00:50:56 +02:00
|
|
|
|
2015-03-30 05:19:54 +02:00
|
|
|
.PHONY: linux_x86_clang
|
2015-03-30 00:50:56 +02:00
|
|
|
linux_x86_clang: generate $(PROJECTDIR)/gmake-linux-clang/Makefile
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-linux-clang config=$(CONFIG)32
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-30 05:19:54 +02:00
|
|
|
#-------------------------------------------------
|
|
|
|
# gmake-osx
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
2015-03-30 14:37:10 +02:00
|
|
|
$(PROJECTDIR)/gmake-osx/Makefile: makefile $(SCRIPTS) $(GENIE)
|
2015-04-03 15:30:56 +02:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --gcc=osx --gcc_version=$(GCC_VERSION) gmake
|
2015-03-30 05:19:54 +02:00
|
|
|
|
|
|
|
.PHONY: macosx_x64
|
|
|
|
macosx_x64: generate $(PROJECTDIR)/gmake-osx/Makefile
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-osx config=$(CONFIG)64
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-30 05:19:54 +02:00
|
|
|
.PHONY: macosx
|
2015-03-29 15:17:21 +02:00
|
|
|
macosx: macosx_x86
|
|
|
|
|
2015-03-30 05:19:54 +02:00
|
|
|
.PHONY: macosx_x86
|
|
|
|
macosx_x86: generate $(PROJECTDIR)/gmake-osx/Makefile
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-osx config=$(CONFIG)32
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-30 05:19:54 +02:00
|
|
|
#-------------------------------------------------
|
|
|
|
# gmake-osx-clang
|
|
|
|
#-------------------------------------------------
|
2015-03-26 19:07:46 +01:00
|
|
|
|
2015-03-30 14:37:10 +02:00
|
|
|
$(PROJECTDIR)/gmake-osx-clang/Makefile: makefile $(SCRIPTS) $(GENIE)
|
2015-04-03 15:30:56 +02:00
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --gcc=osx-clang --gcc_version=$(CLANG_VERSION) gmake
|
2015-03-30 05:19:54 +02:00
|
|
|
|
|
|
|
.PHONY: macosx_x64_clang
|
|
|
|
macosx_x64_clang: generate $(PROJECTDIR)/gmake-osx-clang/Makefile
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-osx-clang config=$(CONFIG)64
|
2015-03-30 05:19:54 +02:00
|
|
|
|
|
|
|
.PHONY: macosx_x86_clang
|
|
|
|
macosx_x86_clang: generate $(PROJECTDIR)/gmake-osx-clang/Makefile
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/gmake-osx-clang config=$(CONFIG)32
|
2015-03-26 19:07:46 +01:00
|
|
|
|
2015-04-02 18:16:20 +02:00
|
|
|
xcode4: generate
|
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --targetos=macosx --xcode=osx xcode4
|
|
|
|
|
|
|
|
xcode4-ios: generate
|
|
|
|
$(SILENT) $(GENIE) $(PARAMS) --targetos=macosx --xcode=ios xcode4
|
|
|
|
|
|
|
|
|
2015-03-30 05:19:54 +02:00
|
|
|
#-------------------------------------------------
|
|
|
|
# Clean/bootstrap
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
2015-04-05 08:23:57 +02:00
|
|
|
GENIE_SRC=$(wildcard 3rdparty/genie/src/host/*.c)
|
|
|
|
|
|
|
|
$(GENIE): $(GENIE_SRC)
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C 3rdparty/genie/build/gmake.$(GENIEOS) -f genie.make
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-04-05 08:23:57 +02:00
|
|
|
3rdparty/genie/src/hosts/%.c:
|
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
clean:
|
|
|
|
@echo Cleaning...
|
2015-03-26 11:17:59 +01:00
|
|
|
-@rm -rf build
|
2015-04-02 15:45:49 +02:00
|
|
|
$(SILENT) $(MAKE) $(MAKEPARAMS) -C 3rdparty/genie/build/gmake.$(GENIEOS) -f genie.make clean
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-04-08 14:02:13 +02:00
|
|
|
GEN_FOLDERS := $(GENDIR)/$(TARGET)/layout/ $(GENDIR)/$(TARGET)/$(SUBTARGET)/
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-04-04 14:44:06 +02:00
|
|
|
LAYOUTS=$(wildcard $(SRC)/$(TARGET)/layout/*.lay)
|
2007-12-17 16:19:59 +01:00
|
|
|
|
2015-03-28 14:27:39 +01:00
|
|
|
ifneq (,$(wildcard src/osd/$(OSD)/$(OSD).mak))
|
|
|
|
include src/osd/$(OSD)/$(OSD).mak
|
|
|
|
endif
|
|
|
|
|
2015-03-30 09:29:59 +02:00
|
|
|
ifneq (,$(wildcard src/$(TARGET)/$(SUBTARGET).mak))
|
|
|
|
include src/$(TARGET)/$(SUBTARGET).mak
|
|
|
|
endif
|
|
|
|
|
2015-03-28 14:27:39 +01:00
|
|
|
$(GEN_FOLDERS):
|
|
|
|
-$(call MKDIR,$@)
|
|
|
|
|
2015-03-26 12:41:36 +01:00
|
|
|
generate: \
|
|
|
|
$(GENIE) \
|
|
|
|
$(GEN_FOLDERS) \
|
2015-04-04 16:42:58 +02:00
|
|
|
$(patsubst $(SRC)/%.lay,$(GENDIR)/%.lh,$(LAYOUTS))
|
2015-03-26 14:28:13 +01:00
|
|
|
|
2015-03-26 09:00:39 +01:00
|
|
|
$(GENDIR)/%.lh: $(SRC)/%.lay $(SRC)/build/file2str.py
|
|
|
|
@echo Converting $<...
|
2015-04-08 16:24:07 +02:00
|
|
|
$(SILENT)$(PYTHON) $(SRC)/build/file2str.py $< $@ layout_$(basename $(notdir $<))
|