2017-10-05 02:14:02 +00:00
|
|
|
##
|
|
|
|
## Supermodel
|
|
|
|
## A Sega Model 3 Arcade Emulator.
|
2022-06-23 19:34:02 +00:00
|
|
|
## Copyright 2003-2022 The Supermodel Team
|
2017-10-05 02:14:02 +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
|
2017-10-05 02:14:02 +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/>.
|
|
|
|
##
|
|
|
|
|
|
|
|
#
|
|
|
|
# Makefile.OSX
|
|
|
|
#
|
2020-07-27 10:28:48 +00:00
|
|
|
# Makefile for Mac OS X systems using clang.
|
2017-10-05 02:14:02 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
2018-01-22 21:01:35 +00:00
|
|
|
# Build Options
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
DELETE = rm -d -r -f
|
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
2017-10-05 02:14:02 +00:00
|
|
|
# Platform Configuration
|
|
|
|
#
|
|
|
|
# Edit library and include paths as needed.
|
|
|
|
###############################################################################
|
|
|
|
|
2020-07-27 10:28:48 +00:00
|
|
|
#
|
|
|
|
# Must be included first
|
|
|
|
#
|
|
|
|
include Makefiles/Options.inc
|
|
|
|
|
2017-10-05 02:14:02 +00:00
|
|
|
#
|
|
|
|
# Toolchain
|
|
|
|
#
|
2020-07-27 10:28:48 +00:00
|
|
|
CC = clang
|
|
|
|
CXX = clang
|
|
|
|
LD = clang
|
2017-10-05 02:14:02 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# SDL
|
2018-01-22 21:01:35 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
SDL_CFLAGS =
|
2020-07-27 10:28:48 +00:00
|
|
|
SDL_LIBS = -framework SDL2 -framework AGL -framework OpenGL -framework GLUT -framework Cocoa
|
|
|
|
ifeq ($(strip $(NET_BOARD)),1)
|
|
|
|
SDL_LIBS += -framework SDL2_net
|
|
|
|
endif
|
2018-01-22 21:01:35 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# OSX-specific
|
|
|
|
#
|
|
|
|
|
2020-12-30 16:05:25 +00:00
|
|
|
PLATFORM_CXXFLAGS = $(SDL_CFLAGS) -DSUPERMODEL_OSX -F/Library/Frameworks/ -O3
|
2018-01-22 21:01:35 +00:00
|
|
|
PLATFORM_LDFLAGS = $(SDL_LIBS) -lz -lm -lstdc++ -F/Library/Frameworks/
|
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Core Makefile
|
|
|
|
###############################################################################
|
2022-12-06 12:25:20 +00:00
|
|
|
|
|
|
|
PLATFORM_SRC_FILES = \
|
|
|
|
Src/OSD/OSX/FileSystemPath.cpp
|
2018-01-22 21:01:35 +00:00
|
|
|
|
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-01-22 21:01:35 +00:00
|
|
|
$(SILENT)echo Cleaning up \"$(BIN_DIR)\" and \"$(OBJ_DIR)\"...
|
|
|
|
$(SILENT)$(DELETE) $(BIN_DIR)
|
|
|
|
$(SILENT)$(DELETE) $(OBJ_DIR)
|