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.UNIX
|
|
|
|
#
|
|
|
|
# Makefile for UNIX/Linux systems.
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
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
|
|
|
|
#
|
|
|
|
CC = gcc
|
|
|
|
CXX = g++
|
|
|
|
LD = gcc
|
|
|
|
|
|
|
|
#
|
|
|
|
# SDL
|
2018-01-22 21:01:35 +00:00
|
|
|
#
|
|
|
|
|
2020-04-19 08:34:58 +00:00
|
|
|
SDL2_CFLAGS = `sdl2-config --cflags`
|
|
|
|
SDL2_LIBS = `sdl2-config --libs`
|
2018-01-22 21:01:35 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# UNIX-specific
|
|
|
|
#
|
|
|
|
|
2020-12-30 16:05:25 +00:00
|
|
|
PLATFORM_CXXFLAGS = $(SDL2_CFLAGS) -O3
|
2020-07-03 09:08:03 +00:00
|
|
|
PLATFORM_LDFLAGS = $(SDL2_LIBS) -lGL -lGLU -lz -lm -lstdc++ -lpthread -lSDL2_net
|
2018-01-22 21:01:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Core Makefile
|
|
|
|
###############################################################################
|
|
|
|
|
2020-07-27 10:28:48 +00:00
|
|
|
include Makefiles/Rules.inc
|
2018-01-22 21:01:35 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
$(SILENT)echo Cleaning up \"$(BIN_DIR)\" and \"$(OBJ_DIR)\"...
|
|
|
|
$(SILENT)$(DELETE) $(BIN_DIR)
|
|
|
|
$(SILENT)$(DELETE) $(OBJ_DIR)
|