2018-05-06 18:52:23 +00:00
|
|
|
##
|
|
|
|
## Supermodel
|
|
|
|
## A Sega Model 3 Arcade Emulator.
|
2020-07-27 10:28:48 +00:00
|
|
|
## Copyright 2011-2020 Bart Trzynadlowski, Nik Henson, Ian Curtis,
|
|
|
|
## Harry Tuttle, and Spindizzi
|
2018-05-06 18:52:23 +00:00
|
|
|
##
|
|
|
|
## This file is part of Supermodel.
|
|
|
|
##
|
|
|
|
## Supermodel is free software: you can redistribute it and/or modify it under
|
2020-07-27 10:28:48 +00:00
|
|
|
## the terms of the GNU General Public License as published by the Free
|
2018-05-06 18:52:23 +00:00
|
|
|
## Software Foundation, either version 3 of the License, or (at your option)
|
|
|
|
## any later version.
|
|
|
|
##
|
|
|
|
## Supermodel is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
## more details.
|
|
|
|
##
|
|
|
|
## You should have received a copy of the GNU General Public License along
|
|
|
|
## with Supermodel. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
##
|
2018-01-22 21:01:35 +00:00
|
|
|
|
|
|
|
#
|
2018-05-06 18:52:23 +00:00
|
|
|
# Makefile.Win32
|
|
|
|
#
|
|
|
|
# Makefile for Windows systems using gcc and the standard Command Prompt.
|
|
|
|
#
|
|
|
|
# Set variables in the "Configuration" section as required by your system
|
|
|
|
# configuration.
|
2018-01-22 21:01:35 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
2018-05-06 18:52:23 +00:00
|
|
|
# Configuration
|
|
|
|
#
|
|
|
|
# Edit as necessary. Some users may need to edit the "Platform Configuration"
|
2020-04-19 08:34:58 +00:00
|
|
|
# section as well, namely SDL2_LIBS and PLATFORM_LIBS.
|
2018-01-22 21:01:35 +00:00
|
|
|
###############################################################################
|
|
|
|
|
2020-07-27 10:28:48 +00:00
|
|
|
#
|
|
|
|
# Must be included first
|
|
|
|
#
|
|
|
|
include Makefiles/Options.inc
|
|
|
|
|
2018-01-22 21:01:35 +00:00
|
|
|
#
|
2018-05-06 18:52:23 +00:00
|
|
|
# Bitness of build ('32' or '64')
|
2018-01-22 21:01:35 +00:00
|
|
|
#
|
2018-05-06 18:52:23 +00:00
|
|
|
BITS = 64
|
2018-01-22 21:01:35 +00:00
|
|
|
|
2018-05-06 18:52:23 +00:00
|
|
|
#
|
2020-04-19 08:34:58 +00:00
|
|
|
# Path to SDL2
|
2018-05-06 18:52:23 +00:00
|
|
|
#
|
2020-07-27 10:28:48 +00:00
|
|
|
SDL2_INCLUDE_DIR = C:\TDM-GCC-64\x86_64-w64-mingw32\include\SDL2
|
|
|
|
SDL2_LIB_DIR = C:\TDM-GCC-64\x86_64-w64-mingw32\lib
|
2018-01-22 21:01:35 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Toolchain
|
|
|
|
#
|
|
|
|
CC = gcc
|
|
|
|
CXX = g++
|
|
|
|
LD = g++
|
|
|
|
|
2018-05-06 18:52:23 +00:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Platform Configuration
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
# Safety check: can be only '32' or '64' otherwise defaults to '64'
|
|
|
|
ifneq ($(filter $(strip $(BITS)),32 64),$(strip $(BITS)))
|
|
|
|
override BITS = 64
|
|
|
|
endif
|
|
|
|
|
|
|
|
#
|
|
|
|
# Use Bash or Windows Prompt shell commands?
|
|
|
|
#
|
|
|
|
DELETE = rm -d -r -f
|
|
|
|
ifeq ($(strip $(MSYSTEM)),)
|
|
|
|
DELETE = rmdir /s /q
|
|
|
|
endif
|
|
|
|
|
2018-01-22 21:01:35 +00:00
|
|
|
#
|
2020-04-19 08:34:58 +00:00
|
|
|
# SDL2
|
2018-01-22 21:01:35 +00:00
|
|
|
#
|
2020-07-27 10:28:48 +00:00
|
|
|
SDL2_LIBS = -lmingw32 -lSDL2main -lSDL2 -luser32 -lgdi32 -lwinmm -limm32 -lversion -lsetupapi -liphlpapi
|
|
|
|
SDL2_CFLAGS =
|
|
|
|
ifeq ($(strip $(NET_BOARD)),1)
|
|
|
|
SDL2_LIBS += -lSDL2_net
|
|
|
|
endif
|
2018-01-22 21:01:35 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# MinGW/Windows-specific
|
|
|
|
#
|
|
|
|
|
2020-04-19 08:34:58 +00:00
|
|
|
PLATFORM_INCLUDE_DIR = $(SDL2_INCLUDE_DIR)
|
|
|
|
PLATFORM_LIB_DIR = $(SDL2_LIB_DIR)
|
2018-05-06 18:52:23 +00:00
|
|
|
PLATFORM_LIBS = -ldinput8 -lglu32 -lole32 -loleaut32 -lopengl32 -lwbemuuid -lws2_32 -lz
|
2020-04-19 08:34:58 +00:00
|
|
|
PLATFORM_CFLAGS = $(SDL2_CFLAGS) -DSUPERMODEL_WIN32 $(addprefix -I,$(sort $(PLATFORM_INCLUDE_DIR)))
|
|
|
|
PLATFORM_LDFLAGS = -static -L$(sort $(PLATFORM_LIB_DIR)) $(SDL2_LIBS) $(PLATFORM_LIBS)
|
2018-01-22 21:01:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Core Makefile
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
PLATFORM_SRC_FILES = \
|
|
|
|
Src/OSD/Windows/DirectInputSystem.cpp \
|
|
|
|
Src/OSD/Windows/WinOutputs.cpp
|
|
|
|
|
2020-07-27 10:28:48 +00:00
|
|
|
include Makefiles/Rules.inc
|
2018-01-22 21:01:35 +00:00
|
|
|
|
2020-07-27 10:28:48 +00:00
|
|
|
clean:
|
2018-05-06 18:52:23 +00:00
|
|
|
$(SILENT)echo Cleaning up $(BIN_DIR) and $(OBJ_DIR)...
|
2018-01-22 21:01:35 +00:00
|
|
|
$(SILENT)$(DELETE) $(BIN_DIR)
|
|
|
|
$(SILENT)$(DELETE) $(OBJ_DIR)
|