1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-03 00:38:44 +00:00
RetroArch/Makefile.common

1578 lines
43 KiB
Makefile
Raw Normal View History

2016-09-19 17:44:20 +00:00
ROOT_DIR := .
DEPS_DIR := $(ROOT_DIR)/deps
LIBRETRO_COMM_DIR := $(ROOT_DIR)/libretro-common
2017-05-16 20:33:48 +00:00
WANT_WGL = 0
2016-09-19 17:44:20 +00:00
2017-09-12 02:47:37 +00:00
ifeq ($(HAVE_STACK_USAGE), 1)
CFLAGS += -fstack-usage
endif
ifeq ($(HAVE_GL_CONTEXT),)
HAVE_GL_CONTEXT=0
ifeq ($(HAVE_OPENGL), 1)
HAVE_GL_CONTEXT=1
endif
2016-09-16 22:38:35 +00:00
ifeq ($(HAVE_OPENGLES), 1)
HAVE_GL_CONTEXT=1
endif
2016-09-16 22:38:35 +00:00
ifeq ($(HAVE_OPENGLES3), 1)
HAVE_GL_CONTEXT=1
endif
endif
2015-06-02 13:57:18 +00:00
ifeq ($(HAVE_LIBRETRODB),)
HAVE_LIBRETRODB = 1
endif
2015-01-22 02:58:04 +00:00
2016-07-28 18:01:38 +00:00
ifeq ($(HAVE_VIDEO_PROCESSOR), 1)
DEFINES += -DHAVE_VIDEO_PROCESSOR
endif
2017-01-17 13:40:59 +00:00
ifeq ($(HAVE_MENU), 1)
DEFINES += -DHAVE_MENU
HAVE_MENU_COMMON = 1
2017-01-17 13:40:59 +00:00
endif
2017-01-17 13:02:50 +00:00
ifeq ($(HAVE_SOCKET_LEGACY), 1)
DEFINES += -DHAVE_SOCKET_LEGACY
endif
2016-06-07 01:01:33 +00:00
ifeq ($(HAVE_HID), 1)
2016-07-15 13:40:06 +00:00
DEFINES += -DHAVE_HID
2016-06-07 01:01:33 +00:00
endif
2015-01-22 02:58:04 +00:00
ifeq ($(HAVE_LIBRETRODB), 1)
2016-02-09 16:36:59 +00:00
DEFINES += -DHAVE_LIBRETRODB
2015-01-22 02:58:04 +00:00
endif
2017-01-17 16:31:38 +00:00
ifeq ($(HAVE_VITA2D), 1)
DEFINES += -DHAVE_VITA2D
endif
2014-09-14 01:22:04 +00:00
ifeq ($(HAVE_DYLIB), 1)
DEFINES += -DHAVE_DYLIB
endif
2014-09-14 00:52:30 +00:00
ifeq ($(SCALER_NO_SIMD), 1)
DEFINES += -DSCALER_NO_SIMD
endif
2014-09-14 00:15:41 +00:00
2014-09-14 00:52:30 +00:00
ifeq ($(HAVE_PRESERVE_DYLIB),1)
DEFINES += -DNO_DLCLOSE
endif
ifeq ($(GL_DEBUG), 1)
CFLAGS += -DGL_DEBUG
CXXFLAGS += -DGL_DEBUG
endif
ifeq ($(VULKAN_DEBUG), 1)
CFLAGS += -DVULKAN_DEBUG
CXXFLAGS += -DVULKAN_DEBUG
endif
2014-09-14 00:52:30 +00:00
ifeq ($(HAVE_HARD_FLOAT), 1)
DEFINES += -mfloat-abi=hard
endif
2014-09-14 02:37:57 +00:00
ifeq ($(TDM_GCC),)
LDCXXFLAGS += -static-libstdc++
endif
ifeq ($(HAVE_FILE_LOGGER), 1)
CFLAGS += -DHAVE_FILE_LOGGER
endif
2016-06-06 22:00:28 +00:00
ifeq ($(HAVE_SHADERPIPELINE), 1)
2016-07-15 13:40:06 +00:00
CFLAGS += -DHAVE_SHADERPIPELINE
2016-06-06 22:00:28 +00:00
endif
2017-08-06 21:19:11 +00:00
CFLAGS += -I$(LIBRETRO_COMM_DIR)/include -I$(DEPS_DIR)
2016-06-07 04:28:33 +00:00
2016-06-07 04:35:48 +00:00
# Switches
2016-06-07 04:28:33 +00:00
2017-01-17 18:31:11 +00:00
ifeq ($(HAVE_NETLOGGER), 1)
CFLAGS += -DHAVE_LOGGER
DEFINES += -DHAVE_LOGGER
OBJ += network/net_logger.o
endif
2016-06-07 04:28:33 +00:00
# System
ifneq ($(findstring BSD,$(OS)),)
BSD_LOCAL_INC += -I/usr/local/include
HAVE_UNIX = 1
2016-06-07 04:28:33 +00:00
endif
ifneq ($(findstring Darwin,$(OS)),)
OSX := 1
LIBS += -framework AppKit
else
OSX := 0
endif
ifneq ($(findstring Linux,$(OS)),)
LIBS += -lrt
OBJ += input/drivers/linuxraw_input.o \
input/common/linux_common.o \
input/drivers_joypad/linuxraw_joypad.o
HAVE_UNIX = 1
2016-06-07 04:28:33 +00:00
endif
ifeq ($(HAVE_UNIX), 1)
OBJ += frontend/drivers/platform_unix.o
endif
2016-06-07 04:35:48 +00:00
2016-06-07 04:28:33 +00:00
ifeq ($(findstring Haiku,$(OS)),)
LIBS += -lm
DEBUG_FLAG = -g
else
LIBS += -lroot -lnetwork
# stable and nightly haiku builds are stuck on gdb 6.x but we use gcc4
DEBUG_FLAG = -gdwarf-2
endif
# Git
GIT_VERSION := $(shell git rev-parse --short HEAD 2>/dev/null)
ifneq ($(GIT_VERSION),)
DEFINES += -DHAVE_GIT_VERSION -DGIT_VERSION=$(GIT_VERSION)
OBJ += version_git.o
2016-06-07 04:28:33 +00:00
endif
# General object files
2016-06-07 04:35:48 +00:00
OBJ += frontend/frontend.o \
2015-10-11 07:26:54 +00:00
frontend/frontend_driver.o \
frontend/drivers/platform_null.o \
ui/ui_companion_driver.o \
ui/drivers/ui_null.o \
2016-07-15 13:40:06 +00:00
ui/drivers/null/ui_null_window.o \
ui/drivers/null/ui_null_browser_window.o \
ui/drivers/null/ui_null_msg_window.o \
ui/drivers/null/ui_null_application.o \
2016-05-08 03:29:10 +00:00
core_impl.o \
2015-10-11 07:26:54 +00:00
retroarch.o \
2016-09-17 12:44:19 +00:00
dirs.o \
2016-09-17 10:10:46 +00:00
paths.o \
2016-05-09 18:30:47 +00:00
command.o \
2015-10-11 07:26:54 +00:00
msg_hash.o \
intl/msg_hash_us.o \
2016-09-19 17:44:20 +00:00
$(LIBRETRO_COMM_DIR)/queues/task_queue.o \
2016-02-09 16:36:59 +00:00
tasks/task_content.o \
2016-09-19 00:57:23 +00:00
tasks/task_save.o \
2015-10-11 07:26:54 +00:00
tasks/task_file_transfer.o \
2016-05-10 05:54:47 +00:00
tasks/task_image.o \
2017-05-14 00:03:40 +00:00
tasks/task_audio_mixer.o \
2016-09-19 17:44:20 +00:00
$(LIBRETRO_COMM_DIR)/encodings/encoding_utf.o \
$(LIBRETRO_COMM_DIR)/encodings/encoding_crc32.o \
$(LIBRETRO_COMM_DIR)/lists/file_list.o \
$(LIBRETRO_COMM_DIR)/lists/dir_list.o \
$(LIBRETRO_COMM_DIR)/file/retro_dirent.o \
$(LIBRETRO_COMM_DIR)/streams/stdin_stream.o \
2016-09-19 17:44:20 +00:00
$(LIBRETRO_COMM_DIR)/streams/file_stream.o \
2017-07-27 07:09:19 +00:00
$(LIBRETRO_COMM_DIR)/streams/file_stream_transforms.o \
2016-09-19 17:44:20 +00:00
$(LIBRETRO_COMM_DIR)/streams/interface_stream.o \
$(LIBRETRO_COMM_DIR)/streams/memory_stream.o \
$(LIBRETRO_COMM_DIR)/lists/string_list.o \
$(LIBRETRO_COMM_DIR)/string/stdstring.o \
$(LIBRETRO_COMM_DIR)/memmap/memalign.o \
2016-08-29 01:07:20 +00:00
setting_list.o \
2016-03-20 16:28:24 +00:00
list_special.o \
2016-09-19 17:44:20 +00:00
$(LIBRETRO_COMM_DIR)/file/nbio/nbio_stdio.o \
$(LIBRETRO_COMM_DIR)/file/file_path.o \
2015-10-11 07:26:54 +00:00
file_path_special.o \
2016-06-20 03:20:14 +00:00
file_path_str.o \
2016-09-19 17:44:20 +00:00
$(LIBRETRO_COMM_DIR)/hash/rhash.o \
2015-10-11 07:26:54 +00:00
audio/audio_driver.o \
$(LIBRETRO_COMM_DIR)/audio/audio_mixer.o \
2015-10-11 07:26:54 +00:00
input/input_driver.o \
2016-03-05 06:27:48 +00:00
gfx/video_coord_array.o \
2015-10-11 07:26:54 +00:00
gfx/video_driver.o \
camera/camera_driver.o \
2016-09-21 14:06:14 +00:00
wifi/wifi_driver.o \
2015-10-11 07:26:54 +00:00
location/location_driver.o \
driver.o \
configuration.o \
2016-09-19 17:44:20 +00:00
$(LIBRETRO_COMM_DIR)/dynamic/dylib.o \
2015-10-11 07:26:54 +00:00
dynamic.o \
cores/dynamic_dummy.o \
2016-09-19 17:44:20 +00:00
$(LIBRETRO_COMM_DIR)/queues/message_queue.o \
2017-02-24 05:29:13 +00:00
managers/core_manager.o \
managers/state_manager.o \
2015-10-11 07:26:54 +00:00
gfx/drivers_font_renderer/bitmapfont.o \
tasks/task_autodetect.o \
2016-10-04 05:35:29 +00:00
input/input_autodetect_builtin.o \
2015-10-11 07:26:54 +00:00
input/input_keymaps.o \
input/input_remapping.o \
tasks/task_overlay.o \
input/input_overlay.o \
2016-09-19 17:44:20 +00:00
$(LIBRETRO_COMM_DIR)/queues/fifo_queue.o \
2016-05-09 23:25:47 +00:00
managers/core_option_manager.o \
2016-09-19 17:44:20 +00:00
$(LIBRETRO_COMM_DIR)/compat/compat_fnmatch.o \
$(LIBRETRO_COMM_DIR)/compat/compat_posix_string.o \
managers/cheat_manager.o \
2015-10-11 07:26:54 +00:00
core_info.o \
2016-09-19 17:44:20 +00:00
$(LIBRETRO_COMM_DIR)/file/config_file.o \
$(LIBRETRO_COMM_DIR)/file/config_file_userdata.o \
tasks/task_screenshot.o \
2016-12-20 14:18:07 +00:00
tasks/task_powerstate.o \
2016-09-19 17:44:20 +00:00
$(LIBRETRO_COMM_DIR)/gfx/scaler/scaler.o \
2015-10-11 07:26:54 +00:00
gfx/drivers_shader/shader_null.o \
gfx/video_shader_parse.o \
2016-09-19 17:44:20 +00:00
$(LIBRETRO_COMM_DIR)/gfx/scaler/pixconv.o \
$(LIBRETRO_COMM_DIR)/gfx/scaler/scaler_int.o \
$(LIBRETRO_COMM_DIR)/gfx/scaler/scaler_filter.o \
2015-10-11 07:26:54 +00:00
gfx/font_driver.o \
gfx/video_filter.o \
$(LIBRETRO_COMM_DIR)/audio/resampler/audio_resampler.o \
2017-01-09 11:22:29 +00:00
$(LIBRETRO_COMM_DIR)/audio/dsp_filter.o \
$(LIBRETRO_COMM_DIR)/audio/resampler/drivers/sinc_resampler.o \
$(LIBRETRO_COMM_DIR)/audio/resampler/drivers/nearest_resampler.o \
$(LIBRETRO_COMM_DIR)/audio/resampler/drivers/null_resampler.o \
2015-10-11 07:26:54 +00:00
location/drivers/nulllocation.o \
camera/drivers/nullcamera.o \
2016-09-21 14:06:14 +00:00
wifi/drivers/nullwifi.o \
2015-10-11 07:26:54 +00:00
gfx/drivers/nullgfx.o \
audio/drivers/nullaudio.o \
input/drivers/nullinput.o \
input/drivers_hid/null_hid.o \
input/drivers_joypad/null_joypad.o \
playlist.o \
movie.o \
record/record_driver.o \
record/drivers/record_null.o \
2016-09-19 17:44:20 +00:00
$(LIBRETRO_COMM_DIR)/features/features_cpu.o \
2016-05-10 06:53:14 +00:00
performance_counters.o \
verbosity.o
2014-09-13 22:53:00 +00:00
2017-01-17 16:31:38 +00:00
ifeq ($(HAVE_CC_RESAMPLER), 1)
DEFINES += -DHAVE_CC_RESAMPLER
OBJ += audio/drivers_resampler/cc_resampler.o
endif
2016-06-07 04:05:41 +00:00
ifeq ($(HAVE_LANGEXTRA), 1)
DEFINES += -DHAVE_LANGEXTRA
DEFINES += -finput-charset=UTF-8
2016-06-07 04:05:41 +00:00
OBJ += intl/msg_hash_de.o \
intl/msg_hash_eo.o \
intl/msg_hash_es.o \
intl/msg_hash_fr.o \
intl/msg_hash_it.o \
intl/msg_hash_ja.o \
2017-03-04 16:43:13 +00:00
intl/msg_hash_ko.o \
2016-06-07 04:05:41 +00:00
intl/msg_hash_nl.o \
intl/msg_hash_pl.o \
2017-04-07 18:56:30 +00:00
intl/msg_hash_pt_br.o \
intl/msg_hash_pt_pt.o \
intl/msg_hash_ru.o \
2016-10-29 04:15:29 +00:00
intl/msg_hash_vn.o \
intl/msg_hash_chs.o \
intl/msg_hash_cht.o
2016-06-07 04:05:41 +00:00
endif
2016-06-07 04:35:48 +00:00
ifneq ($(HAVE_GETOPT_LONG), 1)
2016-09-19 17:44:20 +00:00
OBJ += $(LIBRETRO_COMM_DIR)/compat/compat_getopt.o
2016-06-07 04:35:48 +00:00
endif
ifneq ($(HAVE_STRCASESTR), 1)
2016-09-19 17:44:20 +00:00
OBJ += $(LIBRETRO_COMM_DIR)/compat/compat_strcasestr.o
2016-06-07 04:35:48 +00:00
endif
ifneq ($(HAVE_STRL), 1)
2016-09-19 17:44:20 +00:00
OBJ += $(LIBRETRO_COMM_DIR)/compat/compat_strl.o
2016-06-07 04:35:48 +00:00
endif
2016-09-19 17:44:20 +00:00
OBJ += $(LIBRETRO_COMM_DIR)/formats/image_texture.o
2015-06-28 16:55:00 +00:00
ifeq ($(HAVE_IMAGEVIEWER), 1)
DEFINES += -DHAVE_IMAGEVIEWER
2016-01-21 18:53:52 +00:00
OBJ += cores/libretro-imageviewer/image_core.o
2015-06-28 16:55:00 +00:00
endif
2015-02-19 02:16:47 +00:00
# Qt
2016-11-20 01:18:44 +00:00
ifeq ($(HAVE_QT_WRAPPER), 1)
2016-11-20 02:19:56 +00:00
OBJ += ui/drivers/ui_qt.o
LIBS += -lQt5Quick -lQt5Widgets -lQt5Gui -lQt5Qml -lQt5Network -lQt5Core -L./ui/drivers/qt/build/release/
2016-11-20 01:18:44 +00:00
LIBS += -lwrapper
endif
ifeq ($(HAVE_QT), 1)
2016-06-09 18:11:26 +00:00
OBJ += ui/drivers/ui_qt.o \
2016-07-15 13:40:06 +00:00
ui/drivers/qt/ui_qt_application.o \
ui/drivers/qt/ui_qt_window.o \
ui/drivers/qt/ui_qt_browser_window.o \
ui/drivers/qt/ui_qt_msg_window.o
2016-06-09 18:11:26 +00:00
ifneq ($(findstring Linux,$(OS)),)
DEFINES += -I/usr/include/qt -fPIC
endif
endif
2016-03-03 17:17:48 +00:00
ifeq ($(HAVE_SSA),1)
LIBS += -lass
endif
# LibretroDB
2015-01-22 02:58:04 +00:00
ifeq ($(HAVE_LIBRETRODB), 1)
2015-02-18 23:47:19 +00:00
OBJ += libretro-db/bintree.o \
2015-10-11 07:26:54 +00:00
libretro-db/libretrodb.o \
libretro-db/query.o \
libretro-db/rmsgpack.o \
libretro-db/rmsgpack_dom.o \
database_info.o \
tasks/task_database.o \
tasks/task_database_cue.o
2015-01-22 02:58:04 +00:00
endif
2017-07-03 05:10:23 +00:00
ifneq ($(C89_BUILD), 1)
HAVE_LIBUI = 0
HAVE_GTKPLUS = 0
2017-07-26 03:34:12 +00:00
ifeq ($(HAVE_SSL), 1)
DEFINES += -DHAVE_SSL
DEFINES += -DMBEDTLS_SSL_DEBUG_ALL
2017-07-26 13:18:00 +00:00
# MinGW requires this for some reason, even though the include paths are relative to the source
INCLUDE_DIRS += -Ideps/mbedtls
2017-07-26 03:34:12 +00:00
OBJS_TLS_CRYPTO = deps/mbedtls/aes.o deps/mbedtls/aesni.o deps/mbedtls/arc4.o \
deps/mbedtls/asn1parse.o deps/mbedtls/asn1write.o deps/mbedtls/base64.o \
deps/mbedtls/bignum.o deps/mbedtls/blowfish.o deps/mbedtls/camellia.o \
deps/mbedtls/ccm.o deps/mbedtls/cipher.o deps/mbedtls/cipher_wrap.o \
deps/mbedtls/cmac.o deps/mbedtls/ctr_drbg.o deps/mbedtls/des.o \
deps/mbedtls/dhm.o deps/mbedtls/ecdh.o deps/mbedtls/ecdsa.o \
deps/mbedtls/ecjpake.o deps/mbedtls/ecp.o \
deps/mbedtls/ecp_curves.o deps/mbedtls/entropy.o deps/mbedtls/entropy_poll.o \
deps/mbedtls/error.o deps/mbedtls/gcm.o deps/mbedtls/havege.o \
deps/mbedtls/hmac_drbg.o deps/mbedtls/md.o deps/mbedtls/md2.o \
deps/mbedtls/md4.o deps/mbedtls/md5.o deps/mbedtls/md_wrap.o \
deps/mbedtls/memory_buffer_alloc.o deps/mbedtls/oid.o \
deps/mbedtls/padlock.o deps/mbedtls/pem.o deps/mbedtls/pk.o \
deps/mbedtls/pk_wrap.o deps/mbedtls/pkcs12.o deps/mbedtls/pkcs5.o \
deps/mbedtls/pkparse.o deps/mbedtls/pkwrite.o deps/mbedtls/platform.o \
deps/mbedtls/ripemd160.o deps/mbedtls/rsa.o deps/mbedtls/sha1.o \
deps/mbedtls/sha256.o deps/mbedtls/sha512.o deps/mbedtls/threading.o \
deps/mbedtls/timing.o deps/mbedtls/version.o \
deps/mbedtls/version_features.o deps/mbedtls/xtea.o
OBJS_TLS_X509 = deps/mbedtls/certs.o deps/mbedtls/pkcs11.o deps/mbedtls/x509.o \
deps/mbedtls/x509_create.o deps/mbedtls/x509_crl.o deps/mbedtls/x509_crt.o \
deps/mbedtls/x509_csr.o deps/mbedtls/x509write_crt.o deps/mbedtls/x509write_csr.o
OBJS_TLS = deps/mbedtls/debug.o deps/mbedtls/net_sockets.o \
deps/mbedtls/ssl_cache.o deps/mbedtls/ssl_ciphersuites.o \
deps/mbedtls/ssl_cli.o deps/mbedtls/ssl_cookie.o \
deps/mbedtls/ssl_srv.o deps/mbedtls/ssl_ticket.o \
deps/mbedtls/ssl_tls.o
OBJ += $(OBJS_TLS_CRYPTO) $(OBJS_TLS_X509) $(OBJS_TLS)
endif
2017-07-03 05:10:23 +00:00
ifeq ($(HAVE_LIBUI), 1)
2017-08-12 22:43:16 +00:00
DEFINES += -DHAVE_LIBUI
2017-07-03 05:19:12 +00:00
ifneq ($(findstring Win32,$(OS)),)
2017-08-12 23:54:48 +00:00
OBJ += deps/libui/windows/alloc.o \
deps/libui/windows/area.o \
deps/libui/windows/areadraw.o \
deps/libui/windows/areaevents.o \
deps/libui/windows/areascroll.o \
deps/libui/windows/areautil.o \
deps/libui/windows/box.o \
deps/libui/windows/button.o \
deps/libui/windows/checkbox.o \
deps/libui/windows/colorbutton.o \
deps/libui/windows/colordialog.o \
deps/libui/windows/combobox.o \
deps/libui/windows/container.o \
deps/libui/windows/control.o \
deps/libui/windows/d2dscratch.o \
deps/libui/windows/datetimepicker.o \
deps/libui/windows/debug.o \
deps/libui/windows/draw.o \
deps/libui/windows/drawmatrix.o \
deps/libui/windows/drawpath.o \
deps/libui/windows/drawtext.o \
deps/libui/windows/dwrite.o \
deps/libui/windows/editablecombo.o \
deps/libui/windows/entry.o \
deps/libui/windows/events.o \
deps/libui/windows/fontbutton.o \
deps/libui/windows/fontdialog.o \
deps/libui/windows/form.o \
deps/libui/windows/graphemes.o \
deps/libui/windows/grid.o \
deps/libui/windows/group.o \
deps/libui/windows/init.o \
deps/libui/windows/label.o \
deps/libui/windows/main.o \
deps/libui/windows/menu.o \
deps/libui/windows/multilineentry.o \
deps/libui/windows/parent.o \
deps/libui/windows/progressbar.o \
deps/libui/windows/radiobuttons.o \
deps/libui/windows/separator.o \
deps/libui/windows/sizing.o \
deps/libui/windows/slider.o \
deps/libui/windows/spinbox.o \
deps/libui/windows/stddialogs.o \
deps/libui/windows/tab.o \
deps/libui/windows/tabpage.o \
deps/libui/windows/text.o \
deps/libui/windows/utf16.o \
deps/libui/windows/utilwin.o \
deps/libui/windows/window.o \
deps/libui/windows/winpublic.o \
deps/libui/windows/winutil.o
2017-07-03 06:44:59 +00:00
LIBS += -luxtheme -ld2d1 -ldwrite -lusp10
2017-08-12 23:54:48 +00:00
else
2017-07-03 06:32:36 +00:00
ifneq ($(findstring Darwin,$(OS)),)
OBJ += deps/libui/darwin/alloc.o \
deps/libui/darwin/area.o \
deps/libui/darwin/areaevents.o \
deps/libui/darwin/autolayout.o \
deps/libui/darwin/box.o \
deps/libui/darwin/button.o \
deps/libui/darwin/checkbox.o \
deps/libui/darwin/colorbutton.o \
deps/libui/darwin/combobox.o \
deps/libui/darwin/control.o \
deps/libui/darwin/datetimepicker.o \
deps/libui/darwin/debug.o \
deps/libui/darwin/draw.o \
deps/libui/darwin/drawtext.o \
deps/libui/darwin/editablecombo.o \
deps/libui/darwin/entry.o \
deps/libui/darwin/fontbutton.o \
deps/libui/darwin/form.o \
deps/libui/darwin/grid.o \
deps/libui/darwin/group.o \
deps/libui/darwin/image.o \
deps/libui/darwin/label.o \
deps/libui/darwin/main.o \
deps/libui/darwin/map.o \
deps/libui/darwin/menu.o \
deps/libui/darwin/multilineentry.o \
deps/libui/darwin/progressbar.o \
deps/libui/darwin/radiobuttons.o \
deps/libui/darwin/scrollview.o \
deps/libui/darwin/separator.o \
deps/libui/darwin/slider.o \
deps/libui/darwin/spinbox.o \
deps/libui/darwin/stddialogs.o \
deps/libui/darwin/tab.o \
deps/libui/darwin/text.o \
deps/libui/darwin/util.o \
deps/libui/darwin/window.o \
deps/libui/darwin/winmoveresize.o
2017-08-12 23:54:48 +00:00
else
2017-08-13 00:42:40 +00:00
CFLAGS += -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/atk-1.0
2017-08-12 23:54:48 +00:00
LIBS += -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0
OBJ += deps/libui/unix/alloc.o \
deps/libui/unix/area.o \
deps/libui/unix/box.o \
deps/libui/unix/button.o \
deps/libui/unix/cellrendererbutton.o \
deps/libui/unix/checkbox.o \
deps/libui/unix/child.o \
deps/libui/unix/colorbutton.o \
deps/libui/unix/combobox.o \
deps/libui/unix/control.o \
deps/libui/unix/datetimepicker.o \
deps/libui/unix/debug.o \
deps/libui/unix/draw.o \
deps/libui/unix/drawmatrix.o \
deps/libui/unix/drawpath.o \
deps/libui/unix/drawtext.o \
deps/libui/unix/editablecombo.o \
deps/libui/unix/entry.o \
deps/libui/unix/fontbutton.o \
deps/libui/unix/form.o \
deps/libui/unix/future.o \
deps/libui/unix/graphemes.o \
deps/libui/unix/grid.o \
deps/libui/unix/group.o \
deps/libui/unix/image.o \
deps/libui/unix/label.o \
deps/libui/unix/main.o \
deps/libui/unix/menu.o \
deps/libui/unix/multilineentry.o \
deps/libui/unix/progressbar.o \
deps/libui/unix/radiobuttons.o \
deps/libui/unix/separator.o \
deps/libui/unix/slider.o \
deps/libui/unix/spinbox.o \
deps/libui/unix/stddialogs.o \
deps/libui/unix/tab.o \
deps/libui/unix/text.o \
deps/libui/unix/util.o \
deps/libui/unix/window.o
endif
2017-07-03 06:32:36 +00:00
endif
2017-07-03 05:10:23 +00:00
OBJ += deps/libui/common/areaevents.o \
deps/libui/common/control.o \
deps/libui/common/debug.o \
deps/libui/common/matrix.o \
deps/libui/common/shouldquit.o \
deps/libui/common/userbugs.o
2017-07-03 07:45:09 +00:00
OBJ += deps/libui/libui_main.o
2017-07-03 05:10:23 +00:00
endif
endif
2014-09-14 00:52:30 +00:00
# Miscellaneous
2014-09-14 02:37:57 +00:00
ifeq ($(HAVE_STDIN_CMD), 1)
DEFINES += -DHAVE_COMMAND -DHAVE_STDIN_CMD
endif
2014-09-14 00:52:30 +00:00
ifeq ($(HAVE_PYTHON), 1)
DEFINES += $(PYTHON_CFLAGS) -Wno-unused-parameter
LIBS += $(PYTHON_LIBS)
OBJ += gfx/drivers_tracker/video_state_python.o
2014-09-14 00:52:30 +00:00
endif
2014-09-14 01:58:49 +00:00
ifeq ($(HAVE_EMSCRIPTEN), 1)
OBJ += frontend/drivers/platform_emscripten.o \
2015-10-11 07:26:54 +00:00
input/drivers/rwebinput_input.o \
audio/drivers/rwebaudio.o \
camera/drivers/rwebcam.o
2014-09-14 01:58:49 +00:00
endif
2016-09-21 14:06:14 +00:00
ifeq ($(HAVE_LAKKA), 1)
OBJ += wifi/drivers/connmanctl.o
endif
2014-09-14 00:52:30 +00:00
# Audio
#
ifeq ($(HAVE_COREAUDIO), 1)
2015-01-12 04:05:56 +00:00
OBJ += audio/drivers/coreaudio.o
2014-09-14 00:52:30 +00:00
LIBS += -framework CoreServices -framework CoreAudio -framework AudioUnit
endif
2015-04-19 22:13:02 +00:00
ifeq ($(HAVE_CORETEXT), 1)
OBJ += gfx/drivers_font_renderer/coretext.o
endif
2014-09-14 00:52:30 +00:00
ifeq ($(HAVE_OSS), 1)
2015-01-12 04:05:56 +00:00
OBJ += audio/drivers/oss.o
else ifeq ($(HAVE_OSS_BSD), 1)
2015-01-12 04:05:56 +00:00
OBJ += audio/drivers/oss.o
2014-09-14 00:52:30 +00:00
endif
ifeq ($(HAVE_ALSA), 1)
2016-05-11 17:02:43 +00:00
OBJ += audio/drivers/alsa.o
ifeq ($(HAVE_THREADS), 1)
2016-07-15 13:40:06 +00:00
OBJ += audio/drivers/alsathread.o
2016-05-11 17:02:43 +00:00
endif
2014-09-14 00:52:30 +00:00
LIBS += $(ALSA_LIBS)
DEFINES += $(ALSA_CFLAGS)
endif
2017-06-24 01:44:00 +00:00
ifeq ($(HAVE_TINYALSA), 1)
OBJ += audio/drivers/tinyalsa.o
2017-06-24 01:44:00 +00:00
DEFINES += -DHAVE_TINYALSA
endif
2014-09-14 00:52:30 +00:00
ifeq ($(HAVE_ROAR), 1)
2015-01-12 04:05:56 +00:00
OBJ += audio/drivers/roar.o
2014-09-14 00:52:30 +00:00
LIBS += $(ROAR_LIBS)
DEFINES += $(ROAR_CFLAGS)
endif
ifeq ($(HAVE_AL), 1)
2015-01-12 04:05:56 +00:00
OBJ += audio/drivers/openal.o
2014-09-14 00:52:30 +00:00
ifeq ($(OSX),1)
LIBS += -framework OpenAL
else
LIBS += -lopenal
endif
endif
ifneq ($(findstring Darwin,$(OS)),)
2015-10-11 07:26:54 +00:00
OBJ += frontend/drivers/platform_darwin.o
endif
2014-09-14 00:52:30 +00:00
ifeq ($(HAVE_JACK),1)
2015-01-12 04:05:56 +00:00
OBJ += audio/drivers/jack.o
2014-09-14 00:52:30 +00:00
LIBS += $(JACK_LIBS)
DEFINES += $(JACK_CFLAGS)
endif
ifeq ($(HAVE_PULSE), 1)
2015-01-12 04:05:56 +00:00
OBJ += audio/drivers/pulse.o
2014-09-14 00:52:30 +00:00
LIBS += $(PULSE_LIBS)
DEFINES += $(PULSE_CFLAGS)
endif
ifeq ($(HAVE_OSS_LIB), 1)
LIBS += -lossaudio
endif
ifeq ($(HAVE_RSOUND), 1)
2015-03-15 13:28:20 +00:00
OBJ += audio/drivers/rsound.o
2014-09-14 00:52:30 +00:00
DEFINES += $(RSOUND_CFLAGS)
LIBS += $(RSOUND_LIBS)
endif
ifeq ($(HAVE_DSOUND), 1)
2015-01-12 04:05:56 +00:00
OBJ += audio/drivers/dsound.o
2014-09-14 00:52:30 +00:00
DEFINES += -DHAVE_DSOUND
LIBS += -ldxguid -ldsound
endif
2017-04-09 21:53:55 +00:00
ifeq ($(HAVE_WASAPI), 1)
OBJ += audio/drivers/wasapi.o
DEFINES += -DHAVE_WASAPI
LIBS += -lole32 -lksuser
endif
2014-09-14 00:52:30 +00:00
ifeq ($(HAVE_XAUDIO), 1)
2015-04-03 00:29:20 +00:00
OBJ += audio/drivers/xaudio.o
2014-09-14 00:52:30 +00:00
DEFINES += -DHAVE_XAUDIO
LIBS += -lole32
endif
# Audio Resamplers
ifeq ($(HAVE_NEON),1)
OBJ += $(LIBRETRO_COMM_DIR)/audio/resampler/drivers/sinc_resampler_neon.o \
2017-01-17 17:01:29 +00:00
audio/drivers_resampler/cc_resampler_neon.o \
memory/neon/memcpy-neon.o
2014-09-14 00:52:30 +00:00
# When compiled without this, tries to attempt to compile sinc lerp,
# which will error out
2016-02-09 16:36:59 +00:00
#
# TODO - we need to make quality levels of sinc
# runtime toggleable instead of going by compile-time
# defines
2014-09-14 00:52:30 +00:00
DEFINES += -DSINC_LOWER_QUALITY
endif
OBJ += $(LIBRETRO_COMM_DIR)/audio/conversion/s16_to_float.o \
$(LIBRETRO_COMM_DIR)/audio/conversion/float_to_s16.o \
$(LIBRETRO_COMM_DIR)/audio/audio_mix.o \
$(LIBRETRO_COMM_DIR)/formats/wav/rwav.o
2016-09-19 17:44:20 +00:00
2016-06-07 04:35:48 +00:00
ifeq ($(HAVE_NEON),1)
OBJ += $(LIBRETRO_COMM_DIR)/audio/conversion/s16_to_float_neon.o \
$(LIBRETRO_COMM_DIR)/audio/conversion/float_to_s16_neon.o
2016-06-07 04:35:48 +00:00
endif
2014-09-14 00:52:30 +00:00
ifneq ($(findstring Win32,$(OS)),)
2017-01-16 20:06:46 +00:00
# if user explicitly sets --disable-vulkan on Windows, then disable it
ifneq ($(HAVE_NO_VULKAN),1)
HAVE_VULKAN=1
DEFINES += -DHAVE_VULKAN
endif
endif
HW_CONTEXT_MENU_DRIVERS=$(HAVE_RGUI)
ifeq ($(HW_CONTEXT_MENU_DRIVERS),0)
ifeq ($(HAVE_GL_CONTEXT),1)
2016-07-15 13:40:06 +00:00
HW_CONTEXT_MENU_DRIVERS=1
endif
ifeq ($(HAVE_VULKAN),1)
2016-07-15 13:40:06 +00:00
HW_CONTEXT_MENU_DRIVERS=1
endif
endif
2015-11-17 11:04:02 +00:00
# XMB and MaterialUI are always enabled if supported and not explicitly disabled
ifeq ($(HW_CONTEXT_MENU_DRIVERS), 1)
ifeq ($(HAVE_ZARCH),)
HAVE_ZARCH = 1
endif
ifeq ($(HAVE_MATERIALUI),)
HAVE_MATERIALUI = 1
endif
2016-04-25 12:58:47 +00:00
#ifeq ($(HAVE_NUKLEAR),)
#HAVE_NUKLEAR = 1
2016-02-25 20:29:38 +00:00
#endif
ifeq ($(HAVE_XMB),)
HAVE_XMB = 1
endif
else
HAVE_ZARCH ?= 0
HAVE_MATERIALUI ?= 0
#HAVE_NUKLEAR ?= 0
HAVE_XMB ?= 0
endif
2014-09-13 22:53:00 +00:00
ifeq ($(HAVE_RGUI), 1)
2015-01-26 09:54:13 +00:00
OBJ += menu/drivers/rgui.o
2014-09-13 22:53:00 +00:00
DEFINES += -DHAVE_MENU -DHAVE_RGUI
HAVE_MENU_COMMON = 1
ifeq ($(HAVE_MATERIALUI), 1)
OBJ += menu/drivers/materialui.o
DEFINES += -DHAVE_MATERIALUI
HAVE_MENU_COMMON = 1
2014-09-13 22:53:00 +00:00
endif
2016-04-25 12:58:47 +00:00
ifeq ($(HAVE_NUKLEAR), 1)
OBJ += menu/drivers/nuklear/nk_common.o
OBJ += menu/drivers/nuklear/nk_menu.o
OBJ += menu/drivers/nuklear/nk_wnd_debug.o
2016-04-25 12:58:47 +00:00
OBJ += menu/drivers/nuklear.o
DEFINES += -DHAVE_NUKLEAR
2016-02-14 19:10:06 +00:00
endif
ifeq ($(HAVE_ZARCH), 1)
OBJ += menu/drivers/zarch.o
DEFINES += -DHAVE_ZARCH
endif
endif
2014-10-08 23:21:22 +00:00
ifeq ($(HAVE_XMB), 1)
2015-01-26 09:54:13 +00:00
OBJ += menu/drivers/xmb.o
2014-10-08 23:21:22 +00:00
DEFINES += -DHAVE_XMB
HAVE_MENU_COMMON = 1
2014-10-08 23:21:22 +00:00
endif
2014-09-13 22:53:00 +00:00
ifeq ($(HAVE_LAKKA), 1)
DEFINES += -DHAVE_LAKKA
endif
2014-09-13 22:53:00 +00:00
ifeq ($(HAVE_MENU_COMMON), 1)
2016-06-20 01:35:09 +00:00
OBJ += menu/menu_driver.o \
2016-02-09 16:36:59 +00:00
menu/menu_content.o \
2015-10-11 07:26:54 +00:00
menu/menu_input.o \
2016-09-16 14:39:30 +00:00
menu/menu_event.o \
2015-10-11 07:26:54 +00:00
menu/menu_entries.o \
menu/menu_setting.o \
menu/menu_shader.o \
2016-12-16 07:59:05 +00:00
menu/widgets/menu_filebrowser.o \
menu/widgets/menu_dialog.o \
2016-09-15 17:23:32 +00:00
menu/widgets/menu_input_dialog.o \
2016-09-15 18:35:39 +00:00
menu/widgets/menu_input_bind_dialog.o \
2016-09-14 22:20:43 +00:00
menu/widgets/menu_entry.o \
2016-09-14 22:10:37 +00:00
menu/widgets/menu_list.o \
menu/widgets/menu_osk.o \
2015-10-11 07:26:54 +00:00
menu/menu_cbs.o \
menu/cbs/menu_cbs_ok.o \
menu/cbs/menu_cbs_cancel.o \
menu/cbs/menu_cbs_select.o \
menu/cbs/menu_cbs_start.o \
menu/cbs/menu_cbs_info.o \
menu/cbs/menu_cbs_refresh.o \
menu/cbs/menu_cbs_left.o \
menu/cbs/menu_cbs_right.o \
menu/cbs/menu_cbs_deferred_push.o \
menu/cbs/menu_cbs_scan.o \
menu/cbs/menu_cbs_get_value.o \
2016-07-08 14:24:05 +00:00
menu/cbs/menu_cbs_label.o \
2016-10-20 13:57:35 +00:00
menu/cbs/menu_cbs_sublabel.o \
2015-10-11 07:26:54 +00:00
menu/cbs/menu_cbs_title.o \
menu/cbs/menu_cbs_up.o \
menu/cbs/menu_cbs_down.o \
menu/cbs/menu_cbs_contentlist_switch.o \
menu/menu_displaylist.o \
menu/menu_animation.o \
menu/drivers_display/menu_display_null.o \
2015-10-11 07:26:54 +00:00
menu/drivers/menu_generic.o \
menu/drivers/null.o
2014-09-13 22:53:00 +00:00
endif
2014-09-13 23:01:52 +00:00
ifeq ($(HAVE_OVERLAY), 1)
DEFINES += -DHAVE_OVERLAY
endif
2015-07-14 15:00:28 +00:00
ifeq ($(HAVE_STB_FONT), 1)
OBJ += gfx/drivers_font_renderer/stb.o
OBJ += gfx/drivers_font_renderer/stb_unicode.o
DEFINES += -DHAVE_STB_FONT
2015-07-14 15:00:28 +00:00
endif
2014-09-13 23:01:52 +00:00
ifeq ($(HAVE_FREETYPE), 1)
2015-01-12 22:34:10 +00:00
OBJ += gfx/drivers_font_renderer/freetype.o
2014-09-13 23:01:52 +00:00
LIBS += $(FREETYPE_LIBS)
DEFINES += $(FREETYPE_CFLAGS)
endif
ifeq ($(HAVE_THREADS), 1)
2016-09-19 17:44:20 +00:00
OBJ += $(LIBRETRO_COMM_DIR)/rthreads/rthreads.o \
2016-06-07 04:35:48 +00:00
gfx/video_thread_wrapper.o \
2016-02-09 16:36:59 +00:00
audio/audio_thread_wrapper.o
2014-09-13 23:01:52 +00:00
DEFINES += -DHAVE_THREADS
ifeq ($(findstring Haiku,$(OS)),)
LIBS += -lpthread
endif
endif
2014-09-13 23:58:57 +00:00
2016-10-18 00:21:51 +00:00
ifeq ($(HAVE_THREAD_STORAGE), 1)
DEFINES += -DHAVE_THREAD_STORAGE
endif
2017-01-17 16:31:38 +00:00
ifeq ($(HAVE_VITA2D), 1)
OBJ += $(DEPS_DIR)/libvita2d/source/vita2d.o \
$(DEPS_DIR)/libvita2d/source/vita2d_texture.o \
$(DEPS_DIR)/libvita2d/source/vita2d_draw.o \
$(DEPS_DIR)/libvita2d/source/utils.o
2017-01-17 17:57:44 +00:00
OBJ += $(DEPS_DIR)/libvita2d/shader/clear_v_gxp.o \
$(DEPS_DIR)/libvita2d/shader/clear_f_gxp.o \
$(DEPS_DIR)/libvita2d/shader/color_v_gxp.o \
$(DEPS_DIR)/libvita2d/shader/color_f_gxp.o \
$(DEPS_DIR)/libvita2d/shader/texture_v_gxp.o \
$(DEPS_DIR)/libvita2d/shader/texture_f_gxp.o \
$(DEPS_DIR)/libvita2d/shader/texture_tint_f_gxp.o
2017-01-17 16:56:49 +00:00
2017-01-17 17:01:29 +00:00
ifeq ($(HAVE_MENU),1)
OBJ += menu/drivers_display/menu_display_vita2d.o
endif
OBJ += gfx/drivers/vita2d_gfx.o \
gfx/drivers_font/vita2d_font.o
CFLAGS += -I$(DEPS_DIR)/libvita2d/include
2017-01-17 16:31:38 +00:00
endif
2014-09-14 01:22:04 +00:00
ifeq ($(HAVE_WAYLAND), 1)
OBJ += gfx/drivers_context/wayland_ctx.o \
input/drivers/wayland_input.o
2016-12-17 20:34:51 +00:00
DEFINES += $(WAYLAND_CFLAGS) $(WAYLAND_CURSOR_CFLAGS)
LIBS += $(WAYLAND_LIBS) $(WAYLAND_CURSOR_LIBS)
2014-09-14 01:22:04 +00:00
endif
#Input
2014-09-14 00:52:30 +00:00
ifeq ($(HAVE_DINPUT), 1)
LIBS += -ldinput8 -ldxguid -lole32
DEFINES += -DHAVE_DINPUT
OBJ += input/drivers/dinput.o \
2015-10-11 07:26:54 +00:00
input/drivers_joypad/dinput_joypad.o
2014-09-14 00:52:30 +00:00
endif
2015-04-05 18:54:46 +00:00
ifeq ($(HAVE_XINPUT), 1)
DEFINES += -DHAVE_XINPUT
OBJ += input/drivers_joypad/xinput_joypad.o
2014-09-13 23:58:57 +00:00
endif
ifeq ($(HAVE_OPENDINGUX_FBDEV), 1)
2016-07-15 13:40:06 +00:00
OBJ += gfx/drivers_context/opendingux_fbdev_ctx.o
DEFINES += $(EGL_CFLAGS)
LIBS += $(EGL_LIBS)
endif
2014-09-13 23:58:57 +00:00
ifeq ($(HAVE_X11), 1)
2015-11-29 02:34:09 +00:00
OBJ += input/common/input_x11_common.o \
2016-02-09 16:36:59 +00:00
input/drivers/x11_input.o \
gfx/common/dbus_common.o \
2015-10-11 07:26:54 +00:00
gfx/common/x11_common.o \
2017-04-26 13:29:21 +00:00
gfx/common/xinerama_common.o
2015-10-11 07:26:54 +00:00
2014-09-13 23:58:57 +00:00
LIBS += $(X11_LIBS) $(XEXT_LIBS) $(XF86VM_LIBS) $(XINERAMA_LIBS)
DEFINES += $(X11_CFLAGS) $(XEXT_CFLAGS) $(XF86VM_CFLAGS) $(XINERAMA_CFLAGS)
2016-02-19 14:44:03 +00:00
ifeq ($(HAVE_XCB),1)
2016-07-15 13:40:06 +00:00
LIBS += -lX11-xcb
2016-02-19 14:44:03 +00:00
endif
2016-09-16 22:38:35 +00:00
ifneq ($(HAVE_OPENGLES), 1)
2016-07-15 13:40:06 +00:00
OBJ += gfx/drivers_context/x_ctx.o
endif
2014-09-13 23:58:57 +00:00
endif
2016-02-19 14:43:12 +00:00
ifeq ($(HAVE_XCB),1)
2016-07-15 13:40:06 +00:00
DEFINES += $(XCB_CFLAGS)
LIBS += $(XCB_LIBS)
2016-02-19 14:43:12 +00:00
endif
2014-09-13 23:58:57 +00:00
ifeq ($(HAVE_XKBCOMMON), 1)
DEFINES += $(XKBCOMMON_CFLAGS)
2016-02-09 16:36:59 +00:00
OBJ += input/drivers_keyboard/keyboard_event_xkb.o
2014-09-13 23:58:57 +00:00
LIBS += $(XKBCOMMON_LIBS)
endif
WIP: Fixes #2026 Screensaver suspend on Linux via Dbus One some systems (tested with Gnome 3 on Arch Linux) the current method of using `xdg-screensaver` to suspend the screensaver does not work. Instead, using DBus to issue an `Inhibit` request is recommended. The request returns a cookie that needs to be re-used to un-inhibit the screensaver later. Additionally if the DBus connection is closed the current inhibition is discarded. Thus, the DBus connection needs to stay connected for the duration of the screenshot inhibition. The code is heavily inspired from the [SDL 2.x code](http://hg.libsdl.org/SDL/file/default/src/core/linux/SDL_dbus.c#l172). I didn't call the SDL 2 code though since this it to fix the issue with the GL driver, and I assume one would want to have screensaver inhibited even when SDL 2 is not available (but GL is). I've set "WIP" because: * I haven't done C in a long time so my code is probably not great * There's a dependency on DBus which I don't know is acceptable or not * I've put my code where I could to check it works, but `x11_common` may not be the best place * The code need and "init" and "deinit" kind of method as it needs to initialise the DBus connection, and on deinit close it properly. I've used `x11_connect` and `x11_window_destroy` but they don't sound like the best choices. * I'm a bit unclear as to what happens when "suspend screensaver" is ticked on/off in the menu. This doesn't seem to call `x11_suspend_screensaver` everytime, so I'm not sure if there's a hook somewhere (as disabling screensaver suspend in the menu should cause a DBus unhinibit request to be sent). * Should I just call the SDL 2.x code (meaning that the GL driver would depend on SDL 2.x at runtime)? So, first of all are you ok with the approach, and if yes I'd gladly get feedback about the code, how to architecture it and the best place to put it. Thanks!
2016-09-08 22:18:37 +00:00
ifeq ($(HAVE_DBUS), 1)
LIBS += $(DBUS_LIBS)
CFLAGS += $(DBUS_CFLAGS)
endif
2014-09-13 23:58:57 +00:00
ifeq ($(HAVE_UDEV), 1)
DEFINES += $(UDEV_CFLAGS)
LIBS += $(UDEV_LIBS)
2015-04-04 19:45:59 +00:00
OBJ += input/drivers/udev_input.o \
2015-10-11 07:26:54 +00:00
input/drivers_joypad/udev_joypad.o
2014-09-13 23:58:57 +00:00
endif
ifeq ($(HAVE_LIBUSB), 1)
2016-05-11 17:02:43 +00:00
ifeq ($(HAVE_THREADS), 1)
2016-06-07 01:01:33 +00:00
ifeq ($(HAVE_HID), 1)
2016-02-09 16:36:59 +00:00
DEFINES += -DHAVE_LIBUSB
OBJ += input/drivers_hid/libusb_hid.o
LIBS += -lusb-1.0
2016-06-07 01:01:33 +00:00
endif
endif
2016-05-11 17:02:43 +00:00
endif
ifeq ($(HAVE_IOHIDMANAGER), 1)
2016-06-07 01:01:33 +00:00
ifeq ($(HAVE_HID), 1)
2016-02-09 16:36:59 +00:00
DEFINES += -DHAVE_IOHIDMANAGER
OBJ += input/drivers_hid/iohidmanager_hid.o
LIBS += -framework IOKit
endif
2016-06-07 01:01:33 +00:00
endif
ifeq ($(HAVE_CORELOCATION), 1)
2016-02-09 16:36:59 +00:00
DEFINES += -DHAVE_CORELOCATION
LIBS += -framework CoreLocation
endif
ifeq ($(HAVE_HID), 1)
2016-02-09 16:36:59 +00:00
DEFINES += -DHAVE_HID
2017-06-11 06:56:36 +00:00
OBJ += input/drivers_joypad/hid_joypad.o \
2016-07-15 13:40:06 +00:00
input/connect/joypad_connection.o \
input/connect/connect_ps2adapter.o \
2017-06-18 13:35:46 +00:00
input/connect/connect_psxadapter.o \
2015-10-11 07:26:54 +00:00
input/connect/connect_ps3.o \
input/connect/connect_ps4.o \
input/connect/connect_wii.o \
2016-02-04 22:43:33 +00:00
input/connect/connect_nesusb.o \
input/connect/connect_snesusb.o \
2016-02-04 22:49:04 +00:00
input/connect/connect_wiiupro.o \
input/connect/connect_wiiugca.o
endif
2014-10-04 21:04:38 +00:00
ifeq ($(HAVE_PARPORT), 1)
OBJ += input/drivers_joypad/parport_joypad.o
2014-10-04 21:04:38 +00:00
endif
2014-09-14 00:52:30 +00:00
2017-05-18 16:48:41 +00:00
ifneq ($(findstring Win32,$(OS)),)
OBJ += input/drivers/winraw_input.o
endif
2015-11-19 06:23:41 +00:00
# Companion UI
ifneq ($(findstring Win32,$(OS)),)
2016-06-04 02:24:54 +00:00
OBJ += ui/drivers/ui_win32.o \
2016-07-15 13:40:06 +00:00
ui/drivers/win32/ui_win32_window.o \
ui/drivers/win32/ui_win32_browser_window.o \
ui/drivers/win32/ui_win32_msg_window.o \
ui/drivers/win32/ui_win32_application.o
2015-11-19 06:23:41 +00:00
endif
2014-09-13 23:58:57 +00:00
# Video
2015-06-17 18:18:25 +00:00
OBJ += gfx/drivers_context/gfx_null_ctx.o \
2017-04-20 20:14:03 +00:00
gfx/video_state_tracker.o
2015-10-11 07:19:11 +00:00
2016-02-22 12:01:16 +00:00
ifeq ($(HAVE_KMS), 1)
2016-07-15 13:40:06 +00:00
HAVE_AND_WILL_USE_DRM = 1
OBJ += gfx/drivers_context/drm_ctx.o
DEFINES += $(GBM_CFLAGS) $(DRM_CFLAGS) $(EGL_CFLAGS)
LIBS += $(GBM_LIBS) $(DRM_LIBS) $(EGL_LIBS)
2016-02-22 12:01:16 +00:00
endif
2016-12-01 17:13:36 +00:00
ifeq ($(HAVE_CACA), 1)
DEFINES += -DHAVE_CACA
OBJ += gfx/drivers/caca_gfx.o gfx/drivers_font/caca_font.o
LIBS += -lcaca
ifeq ($(HAVE_MENU_COMMON), 1)
OBJ += menu/drivers_display/menu_display_caca.o
endif
endif
ifeq ($(HAVE_PLAIN_DRM), 1)
2016-07-15 13:40:06 +00:00
OBJ += gfx/drivers/drm_gfx.o
CFLAGS += -I/usr/include/libdrm
2016-08-22 12:23:17 +00:00
LIBS += -ldrm
endif
2017-04-18 23:51:05 +00:00
OBJ += \
gfx/drivers_renderchain/null_renderchain.o
2015-06-17 18:18:25 +00:00
ifeq ($(HAVE_GL_CONTEXT), 1)
2014-09-15 15:07:17 +00:00
DEFINES += -DHAVE_OPENGL -DHAVE_GLSL
OBJ += gfx/drivers/gl.o \
gfx/drivers_renderchain/gl2_renderchain.o \
$(LIBRETRO_COMM_DIR)/gfx/gl_capabilities.o \
2015-11-17 07:01:33 +00:00
gfx/common/gl_common.o \
2016-06-07 04:35:48 +00:00
gfx/drivers_font/gl_raster_font.o \
2016-09-19 17:44:20 +00:00
$(LIBRETRO_COMM_DIR)/glsym/rglgen.o
2016-02-09 16:36:59 +00:00
ifeq ($(HAVE_MENU_COMMON), 1)
2016-02-09 16:36:59 +00:00
OBJ += menu/drivers_display/menu_display_gl.o
endif
2014-09-14 01:44:54 +00:00
ifeq ($(HAVE_VIDEOCORE), 1)
2015-01-12 21:19:31 +00:00
OBJ += gfx/drivers_context/vc_egl_ctx.o
2014-09-14 01:44:54 +00:00
DEFINES += $(EGL_CFLAGS)
LIBS += $(EGL_LIBS)
endif
ifeq ($(HAVE_EMSCRIPTEN), 1)
2015-01-12 21:19:31 +00:00
OBJ += gfx/drivers_context/emscriptenegl_ctx.o
2014-09-14 01:44:54 +00:00
endif
ifeq ($(HAVE_MALI_FBDEV), 1)
2015-01-12 21:19:31 +00:00
OBJ += gfx/drivers_context/mali_fbdev_ctx.o
DEFINES += $(EGL_CFLAGS)
LIBS += $(EGL_LIBS)
2014-09-14 01:44:54 +00:00
endif
ifeq ($(HAVE_VIVANTE_FBDEV), 1)
2015-01-12 21:19:31 +00:00
OBJ += gfx/drivers_context/vivante_fbdev_ctx.o
2014-09-14 01:44:54 +00:00
DEFINES += $(EGL_CFLAGS)
LIBS += $(EGL_LIBS)
endif
ifeq ($(HAVE_X11), 1)
ifeq ($(HAVE_EGL), 1)
2015-01-12 21:19:31 +00:00
OBJ += gfx/drivers_context/xegl_ctx.o
2014-09-14 01:44:54 +00:00
DEFINES += $(EGL_CFLAGS)
LIBS += $(EGL_LIBS)
endif
endif
2016-07-30 14:37:22 +00:00
ifeq ($(HAVE_OSMESA), 1)
OBJ += gfx/drivers_context/osmesa_ctx.o
LIBS += -lOSMesa
endif
ifeq ($(HAVE_FFMPEG), 1)
ifneq ($(C89_BUILD), 1)
2016-09-16 22:38:35 +00:00
ifneq ($(HAVE_OPENGLES), 1)
OBJ += cores/libretro-ffmpeg/ffmpeg_fft.o
2016-09-19 17:44:20 +00:00
DEFINES += -I$(DEPS_DIR) -DHAVE_GL_FFT
2016-07-15 13:40:06 +00:00
NEED_CXX_LINKER=1
endif
endif
endif
2016-09-16 22:38:35 +00:00
ifeq ($(HAVE_OPENGLES), 1)
LIBS += $(OPENGLES_LIBS)
DEFINES += $(OPENGLES_CFLAGS) -DHAVE_OPENGLES
2016-09-16 22:38:35 +00:00
ifeq ($(HAVE_OPENGLES3), 1)
2014-09-14 01:44:54 +00:00
DEFINES += -DHAVE_OPENGLES3
2016-08-07 03:45:35 +00:00
else
DEFINES += -DHAVE_OPENGLES2
2014-09-14 01:44:54 +00:00
endif
2016-09-19 17:44:20 +00:00
OBJ += $(LIBRETRO_COMM_DIR)/glsym/glsym_es2.o
2014-09-14 01:44:54 +00:00
else
DEFINES += -DHAVE_GL_SYNC
2016-09-19 17:44:20 +00:00
OBJ += $(LIBRETRO_COMM_DIR)/glsym/glsym_gl.o
2016-02-09 16:36:59 +00:00
GL_LIBS := -lGL
2014-09-14 01:44:54 +00:00
ifeq ($(OSX), 1)
2015-06-02 08:07:07 +00:00
GL_LIBS := -framework OpenGL
2015-04-26 01:48:35 +00:00
OBJ += gfx/drivers_context/cgl_ctx.o
2014-09-14 01:44:54 +00:00
else ifneq ($(findstring Win32,$(OS)),)
2017-05-16 20:43:21 +00:00
GL_LIBS := -lopengl32 -lgdi32 -lcomdlg32
WANT_WGL=1
2014-09-14 01:44:54 +00:00
endif
2016-02-09 16:36:59 +00:00
LIBS += $(GL_LIBS)
2014-09-14 01:44:54 +00:00
endif
OBJ += gfx/drivers_shader/shader_glsl.o
2014-09-14 01:44:54 +00:00
DEFINES += -DHAVE_GLSL
endif
2014-09-13 23:58:57 +00:00
2015-11-19 12:16:43 +00:00
ifeq ($(HAVE_EGL), 1)
2016-02-09 16:36:59 +00:00
OBJ += gfx/common/egl_common.o
2015-11-19 12:16:43 +00:00
endif
ifeq ($(HAVE_SDL2), 1)
HAVE_SDL=0
endif
2014-09-14 01:22:04 +00:00
ifeq ($(HAVE_SDL), 1)
2015-04-04 19:45:59 +00:00
OBJ += gfx/drivers/sdl_gfx.o \
2015-10-11 07:26:54 +00:00
input/drivers/sdl_input.o \
input/drivers_joypad/sdl_joypad.o \
audio/drivers/sdl_audio.o
2014-09-14 01:22:04 +00:00
2015-06-17 18:18:25 +00:00
ifeq ($(HAVE_GL_CONTEXT), 1)
2015-01-12 21:19:31 +00:00
OBJ += gfx/drivers_context/sdl_gl_ctx.o
2014-09-14 01:22:04 +00:00
endif
DEFINES += $(SDL_CFLAGS) $(BSD_LOCAL_INC)
LIBS += $(SDL_LIBS)
endif
ifeq ($(HAVE_SDL2), 1)
2015-04-04 19:45:59 +00:00
OBJ += gfx/drivers/sdl2_gfx.o \
2015-10-11 07:26:54 +00:00
input/drivers/sdl_input.o \
input/drivers_joypad/sdl_joypad.o \
audio/drivers/sdl_audio.o
2014-09-14 01:22:04 +00:00
2015-06-17 18:18:25 +00:00
ifeq ($(HAVE_GL_CONTEXT), 1)
2015-01-12 21:19:31 +00:00
OBJ += gfx/drivers_context/sdl_gl_ctx.o
2014-09-14 01:22:04 +00:00
endif
DEFINES += $(SDL2_CFLAGS) $(BSD_LOCAL_INC)
LIBS += $(SDL2_LIBS)
HAVE_SDL = 0
endif
ifeq ($(HAVE_XSHM), 1)
OBJ += gfx/drivers/xshm_gfx.o
endif
2016-02-16 19:24:00 +00:00
ifeq ($(HAVE_VULKAN), 1)
2016-07-15 13:40:06 +00:00
ifneq ($(findstring Win32,$(OS)),)
GLSLANG_PLATFORM := Windows
2017-05-16 20:33:48 +00:00
WANT_WGL = 1
2016-07-15 13:40:06 +00:00
else
GLSLANG_PLATFORM := Unix
endif
GLSLANG_SOURCES := \
2016-09-19 17:44:20 +00:00
$(wildcard $(DEPS_DIR)/glslang/*.cpp) \
$(wildcard $(DEPS_DIR)/glslang/glslang/SPIRV/*.cpp) \
$(wildcard $(DEPS_DIR)/glslang/glslang/glslang/GenericCodeGen/*.cpp) \
$(wildcard $(DEPS_DIR)/glslang/glslang/OGLCompilersDLL/*.cpp) \
$(wildcard $(DEPS_DIR)/glslang/glslang/glslang/MachineIndependent/*.cpp) \
$(wildcard $(DEPS_DIR)/glslang/glslang/glslang/MachineIndependent/preprocessor/*.cpp) \
$(wildcard $(DEPS_DIR)/glslang/glslang/hlsl/*.cpp) \
$(wildcard $(DEPS_DIR)/glslang/glslang/glslang/OSDependent/$(GLSLANG_PLATFORM)/*.cpp)
2016-12-04 03:19:13 +00:00
SPIRV_CROSS_SOURCES := $(DEPS_DIR)/SPIRV-Cross/spirv_cross.cpp \
$(DEPS_DIR)/SPIRV-Cross/spirv_cfg.cpp
2016-07-15 13:40:06 +00:00
ifneq ($(findstring Win32,$(OS)),)
# Trivial temporary workaround for MinGW and glslang.
CXXFLAGS += -fpermissive
endif
DEFINES += \
2016-09-19 17:44:20 +00:00
-I$(DEPS_DIR)/glslang/glslang/glslang/OSDependent/$(GLSLANG_PLATFORM) \
-I$(DEPS_DIR)/glslang/glslang/OGLCompilersDLL \
-I$(DEPS_DIR)/glslang/glslang \
-I$(DEPS_DIR)/glslang/glslang/glslang/MachineIndependent \
-I$(DEPS_DIR)/glslang/glslang/glslang/Public \
-I$(DEPS_DIR)/glslang/glslang/SPIRV \
-I$(DEPS_DIR)/glslang \
-I$(DEPS_DIR)/SPIRV-Cross
2016-07-15 13:40:06 +00:00
CXXFLAGS += -Wno-switch -Wno-sign-compare -fno-strict-aliasing -Wno-maybe-uninitialized -Wno-reorder -Wno-parentheses -Igfx/include
CFLAGS += -Igfx/include
GLSLANG_OBJ := $(GLSLANG_SOURCES:.cpp=.o)
2016-07-15 13:40:06 +00:00
SPIRV_CROSS_OBJ := $(SPIRV_CROSS_SOURCES:.cpp=.o)
OBJ += gfx/drivers/vulkan.o \
gfx/common/vulkan_common.o \
2016-09-19 17:44:20 +00:00
$(LIBRETRO_COMM_DIR)/vulkan/vulkan_symbol_wrapper.o \
2016-07-15 13:40:06 +00:00
gfx/drivers_font/vulkan_raster_font.o \
gfx/drivers_shader/shader_vulkan.o \
gfx/drivers_shader/glslang_util.o \
gfx/drivers_shader/slang_reflection.o \
gfx/drivers_shader/slang_preprocess.o \
2016-07-15 13:40:06 +00:00
$(GLSLANG_OBJ) \
$(SPIRV_CROSS_OBJ)
2016-08-27 23:48:13 +00:00
ifeq ($(HAVE_VULKAN_DISPLAY), 1)
2016-07-15 13:40:06 +00:00
OBJ += gfx/drivers_context/khr_display_ctx.o
endif
ifeq ($(HAVE_MENU_COMMON), 1)
OBJ += menu/drivers_display/menu_display_vulkan.o
endif
LIBS += -lstdc++
DEFINES += -DHAVE_SLANG
2016-02-16 19:24:00 +00:00
endif
2017-05-16 20:33:48 +00:00
ifeq ($(WANT_WGL), 1)
OBJ += gfx/drivers_context/wgl_ctx.o
2017-05-16 20:43:21 +00:00
LIBS += -lcomctl32
2017-05-16 20:33:48 +00:00
endif
2014-09-14 00:52:30 +00:00
ifeq ($(HAVE_OMAP), 1)
OBJ += gfx/drivers/omap_gfx.o
2014-09-14 00:52:30 +00:00
endif
ifeq ($(HAVE_EXYNOS), 1)
2017-01-17 17:01:29 +00:00
OBJ += gfx/drivers/exynos_gfx.o
2014-09-14 00:52:30 +00:00
LIBS += $(DRM_LIBS) $(EXYNOS_LIBS)
DEFINES += $(DRM_CFLAGS) $(EXYNOS_CFLAGS)
2016-02-09 16:36:59 +00:00
HAVE_AND_WILL_USE_DRM = 1
endif
ifeq ($(HAVE_AND_WILL_USE_DRM), 1)
2016-02-09 16:36:59 +00:00
OBJ += gfx/common/drm_common.o
2014-09-14 00:52:30 +00:00
endif
ifeq ($(HAVE_DISPMANX), 1)
OBJ += gfx/drivers/dispmanx_gfx.o
2016-02-09 16:36:59 +00:00
HAVE_VIDEOCORE = 1
LIBS += $(DISPMANX_LIBS)
DEFINES += $(DISPMANX_CFLAGS)
endif
ifeq ($(HAVE_SUNXI), 1)
2015-04-04 19:45:59 +00:00
OBJ += gfx/drivers/sunxi_gfx.o \
2015-11-17 07:35:00 +00:00
gfx/include/pixman/pixman-arm-neon-asm.o
endif
2014-09-13 23:58:57 +00:00
ifeq ($(HAVE_VG), 1)
2015-11-08 22:31:07 +00:00
OBJ += gfx/drivers/vg.o
2014-09-13 23:58:57 +00:00
DEFINES += $(VG_CFLAGS)
LIBS += $(VG_LIBS)
endif
ifeq ($(HAVE_XVIDEO), 1)
OBJ += gfx/drivers/xvideo.o
LIBS += $(XVIDEO_LIBS)
2014-09-13 23:58:57 +00:00
DEFINES += $(XVIDEO_CFLAGS)
endif
2014-09-14 00:05:17 +00:00
ifeq ($(HAVE_CG), 1)
2016-02-09 16:36:59 +00:00
DEFINES += -DHAVE_CG
OBJ += gfx/drivers_shader/shader_gl_cg.o
2014-09-16 20:45:45 +00:00
LIBS += $(CG_LIBS)
2014-09-14 00:05:17 +00:00
endif
ifeq ($(HAVE_D3D9), 1)
2017-09-04 22:06:07 +00:00
HAVE_D3D_COMMON = 1
DEFINES += -DHAVE_D3D9
LIBS += -ld3d9 -ld3dx9 -ldxguid
2017-09-04 23:03:55 +00:00
OBJ += gfx/drivers_font/d3d_w32_font.o
2017-09-04 22:06:07 +00:00
ifeq ($(HAVE_CG), 1)
LIBS += -lcgD3D9
OBJ += gfx/drivers_renderchain/d3d9_cg_renderchain.o
endif
ifeq ($(HAVE_HLSL), 1)
LIBS += -lcgD3D9
2017-09-04 22:10:24 +00:00
OBJ += gfx/drivers_renderchain/d3d9_hlsl_renderchain.o \
gfx/drivers_shader/shader_hlsl.o
2017-09-04 22:06:07 +00:00
endif
endif
ifeq ($(HAVE_D3D8), 1)
HAVE_D3D_COMMON = 1
DEFINES += -DHAVE_D3D8
LIBS += -ld3d8 -ld3dx8 -ldxguid
OBJ += gfx/drivers_renderchain/d3d8_renderchain.o
endif
2017-09-04 22:07:26 +00:00
ifeq ($(HAVE_D3D_COMMON), 1)
2017-09-04 22:06:07 +00:00
DEFINES += -DHAVE_D3D
2016-08-01 20:05:57 +00:00
OBJ += gfx/drivers/d3d.o \
2015-11-18 12:00:13 +00:00
gfx/common/d3d_common.o \
2015-10-11 07:26:54 +00:00
gfx/drivers_context/d3d_ctx.o
2014-09-16 20:45:45 +00:00
2015-11-09 01:14:59 +00:00
ifeq ($(HAVE_MENU_COMMON), 1)
2016-02-09 16:36:59 +00:00
OBJ += menu/drivers_display/menu_display_d3d.o
endif
2014-09-14 00:05:17 +00:00
endif
2014-09-14 00:15:41 +00:00
2014-12-15 20:34:22 +00:00
#ifeq ($(HAVE_LIBXML2), 1)
#LIBS += $(LIBXML2_LIBS)
#DEFINES += $(LIBXML2_CFLAGS)
#else
2016-09-19 17:44:20 +00:00
#OBJ += $(LIBRETRO_COMM_DIR)/formats/xml/rxml.o
2014-12-15 20:34:22 +00:00
#endif
2014-09-14 00:15:41 +00:00
# Compression/Archive
OBJ += $(LIBRETRO_COMM_DIR)/file/archive_file.o \
$(LIBRETRO_COMM_DIR)/streams/trans_stream.o \
$(LIBRETRO_COMM_DIR)/streams/trans_stream_pipe.o
2014-09-14 00:15:41 +00:00
ifeq ($(HAVE_7ZIP),1)
2016-09-19 17:44:20 +00:00
CFLAGS += -I$(DEPS_DIR)/7zip
HAVE_COMPRESSION = 1
2017-09-17 05:28:17 +00:00
DEFINES += -DHAVE_7ZIP -D_7ZIP_ST
2016-09-19 17:44:20 +00:00
7ZOBJ = $(DEPS_DIR)/7zip/7zIn.o \
$(DEPS_DIR)/7zip/Bra86.o \
$(DEPS_DIR)/7zip/7zFile.o \
$(DEPS_DIR)/7zip/7zStream.o \
2017-09-17 05:28:17 +00:00
$(DEPS_DIR)/7zip/LzFind.o \
2016-09-19 17:44:20 +00:00
$(DEPS_DIR)/7zip/LzmaDec.o \
2017-09-17 05:28:17 +00:00
$(DEPS_DIR)/7zip/LzmaEnc.o \
2016-09-19 17:44:20 +00:00
$(DEPS_DIR)/7zip/7zCrcOpt.o \
$(DEPS_DIR)/7zip/Bra.o \
$(DEPS_DIR)/7zip/7zDec.o \
$(DEPS_DIR)/7zip/Bcj2.o \
$(DEPS_DIR)/7zip/7zCrc.o \
$(DEPS_DIR)/7zip/Lzma2Dec.o \
$(DEPS_DIR)/7zip/7zBuf.o
OBJ += $(LIBRETRO_COMM_DIR)/file/archive_file_7z.o \
$(7ZOBJ)
2014-09-14 00:15:41 +00:00
endif
2014-09-14 00:52:30 +00:00
ifeq ($(HAVE_FLAC),1)
CFLAGS += -I$(DEPS_DIR)/libFLAC/include
DEFINES += -DHAVE_FLAC -DHAVE_STDINT_H -DHAVE_LROUND -DFLAC__HAS_OGG=0 \
-DFLAC_PACKAGE_VERSION="\"retroarch\""
FLACOBJ = $(DEPS_DIR)/libFLAC/bitmath.o \
$(DEPS_DIR)/libFLAC/bitreader.o \
$(DEPS_DIR)/libFLAC/cpu.o \
$(DEPS_DIR)/libFLAC/crc.o \
$(DEPS_DIR)/libFLAC/fixed.o \
$(DEPS_DIR)/libFLAC/float.o \
$(DEPS_DIR)/libFLAC/format.o \
$(DEPS_DIR)/libFLAC/lpc.o \
$(DEPS_DIR)/libFLAC/lpc_intrin_avx2.o \
$(DEPS_DIR)/libFLAC/lpc_intrin_sse2.o \
$(DEPS_DIR)/libFLAC/lpc_intrin_sse41.o \
$(DEPS_DIR)/libFLAC/lpc_intrin_sse.o \
$(DEPS_DIR)/libFLAC/md5.o \
$(DEPS_DIR)/libFLAC/memory.o \
$(DEPS_DIR)/libFLAC/stream_decoder.o
ifneq ($(findstring Win32,$(OS)),)
DEFINES += -DHAVE_FSEEKO
# make sure not to use this on legacy Windows versions that don't have W-functions implemented
DEFINES += -DNEED_UTF8_SUPPORT
FLACOBJ += $(DEPS_DIR)/libFLAC/windows_unicode_filenames.o
endif
OBJ += $(FLACOBJ)
endif
2015-02-22 03:56:18 +00:00
2014-09-14 02:50:10 +00:00
ifeq ($(HAVE_ZLIB), 1)
OBJ += $(LIBRETRO_COMM_DIR)/file/archive_file_zlib.o \
$(LIBRETRO_COMM_DIR)/streams/trans_stream_zlib.o
2014-09-14 02:50:10 +00:00
OBJ += $(ZLIB_OBJS)
DEFINES += -DHAVE_ZLIB
HAVE_COMPRESSION = 1
ifeq ($(HAVE_BUILTINZLIB), 1)
2017-10-24 04:37:31 +00:00
INCLUDE_DIRS += -I$(LIBRETRO_COMM_DIR)/include/compat
2015-03-14 04:24:57 +00:00
DEFINES += -DWANT_ZLIB
2014-09-14 02:50:10 +00:00
else
LIBS += -lz
endif
endif
2016-05-18 11:28:20 +00:00
ifeq ($(HAVE_RTGA), 1)
2016-07-15 13:40:06 +00:00
DEFINES += -DHAVE_RTGA
2016-09-19 17:44:20 +00:00
OBJ += $(LIBRETRO_COMM_DIR)/formats/tga/rtga.o
2016-05-18 11:28:20 +00:00
endif
2015-04-19 14:55:03 +00:00
ifeq ($(HAVE_RPNG), 1)
2016-07-15 13:40:06 +00:00
DEFINES += -DHAVE_RPNG
2016-09-19 17:44:20 +00:00
OBJ += $(LIBRETRO_COMM_DIR)/formats/png/rpng.o \
$(LIBRETRO_COMM_DIR)/formats/png/rpng_encode.o
2015-04-19 14:55:03 +00:00
endif
2016-05-11 19:27:17 +00:00
ifeq ($(HAVE_RJPEG), 1)
2016-07-15 13:40:06 +00:00
DEFINES += -DHAVE_RJPEG
2016-09-19 17:44:20 +00:00
OBJ += $(LIBRETRO_COMM_DIR)/formats/jpeg/rjpeg.o
2016-05-11 19:27:17 +00:00
endif
2016-05-18 11:28:20 +00:00
ifeq ($(HAVE_RBMP), 1)
2016-07-15 13:40:06 +00:00
DEFINES += -DHAVE_RBMP
2016-09-19 17:44:20 +00:00
OBJ += $(LIBRETRO_COMM_DIR)/formats/bmp/rbmp.o
2016-05-18 11:28:20 +00:00
endif
ifeq ($(HAVE_IBXM), 1)
DEFINES += -DHAVE_IBXM
OBJ += $(DEPS_DIR)/ibxm/ibxm.o
endif
2016-09-19 17:44:20 +00:00
OBJ += $(LIBRETRO_COMM_DIR)/formats/bmp/rbmp_encode.o \
$(LIBRETRO_COMM_DIR)/formats/json/jsonsax.o \
$(LIBRETRO_COMM_DIR)/formats/json/jsonsax_full.o \
2016-09-19 17:44:20 +00:00
$(LIBRETRO_COMM_DIR)/formats/image_transfer.o
2016-06-07 04:35:48 +00:00
2014-09-16 17:20:15 +00:00
ifdef HAVE_COMPRESSION
DEFINES += -DHAVE_COMPRESSION
endif
ifeq ($(HAVE_BUILTINZLIB),1)
2017-03-25 09:05:33 +00:00
OBJ += $(DEPS_DIR)/libz/adler32.o \
$(DEPS_DIR)/libz/compress.o \
$(DEPS_DIR)/libz/crc32.o \
$(DEPS_DIR)/libz/deflate.o \
$(DEPS_DIR)/libz/gzclose.o \
$(DEPS_DIR)/libz/gzlib.o \
$(DEPS_DIR)/libz/gzread.o \
$(DEPS_DIR)/libz/gzwrite.o \
$(DEPS_DIR)/libz/inffast.o \
$(DEPS_DIR)/libz/inflate.o \
$(DEPS_DIR)/libz/inftrees.o \
$(DEPS_DIR)/libz/trees.o \
$(DEPS_DIR)/libz/uncompr.o \
$(DEPS_DIR)/libz/zutil.o
2014-09-14 02:50:10 +00:00
else
ifeq ($(HAVE_ZLIB),1)
2014-09-14 02:50:10 +00:00
OBJ += $(ZLIB_OBJS)
endif
endif
2014-09-14 02:50:10 +00:00
2017-09-17 05:29:47 +00:00
ifeq ($(HAVE_7ZIP),1)
ifeq ($(HAVE_FLAC),1)
DEFINES += -DHAVE_CHD -DWANT_SUBCODE -DWANT_RAW_DATA_SECTOR
CFLAGS += -I$(LIBRETRO_COMM_DIR)/formats/libchdr
OBJ += $(LIBRETRO_COMM_DIR)/formats/libchdr/bitstream.o \
$(LIBRETRO_COMM_DIR)/formats/libchdr/cdrom.o \
$(LIBRETRO_COMM_DIR)/formats/libchdr/chd.o \
$(LIBRETRO_COMM_DIR)/formats/libchdr/flac.o \
$(LIBRETRO_COMM_DIR)/formats/libchdr/huffman.o \
$(LIBRETRO_COMM_DIR)/streams/chd_stream.o
endif
endif
2016-10-18 00:21:51 +00:00
# Video4Linux 2
2014-09-14 00:52:30 +00:00
ifeq ($(HAVE_V4L2),1)
2016-07-28 18:01:38 +00:00
OBJ += camera/drivers/video4linux2.o
ifeq ($(HAVE_VIDEO_PROCESSOR),1)
OBJ += cores/libretro-video-processor/video_processor_v4l2.o
endif
2014-09-14 00:52:30 +00:00
DEFINES += -DHAVE_V4L2
2016-07-28 17:10:18 +00:00
LIBS += $(V4L2_LIBS)
2014-09-14 00:52:30 +00:00
endif
2016-07-28 18:01:38 +00:00
# Things that depend on network availability
2014-09-14 01:38:36 +00:00
2015-01-27 23:49:43 +00:00
ifeq ($(HAVE_NETWORKING), 1)
DEFINES += -DHAVE_NETWORKING
2016-09-19 17:44:20 +00:00
OBJ += $(LIBRETRO_COMM_DIR)/net/net_compat.o \
$(LIBRETRO_COMM_DIR)/net/net_http.o \
2016-12-26 23:02:09 +00:00
$(LIBRETRO_COMM_DIR)/net/net_http_parse.o \
2016-09-19 17:44:20 +00:00
$(LIBRETRO_COMM_DIR)/net/net_socket.o \
2016-12-26 23:02:09 +00:00
$(LIBRETRO_COMM_DIR)/net/net_natt.o \
network/net_http_special.o \
tasks/task_http.o \
tasks/task_netplay_lan_scan.o \
tasks/task_netplay_nat_traversal.o \
tasks/task_wifi.o \
2017-01-22 23:39:07 +00:00
tasks/task_netplay_find_content.o
2016-06-07 04:35:48 +00:00
2017-07-26 03:34:12 +00:00
ifeq ($(HAVE_SSL), 1)
OBJ += $(LIBRETRO_COMM_DIR)/net/net_socket_ssl.o
endif
2016-06-07 04:35:48 +00:00
ifneq ($(HAVE_SOCKET_LEGACY),1)
2016-09-19 17:44:20 +00:00
OBJ += $(LIBRETRO_COMM_DIR)/net/net_ifinfo.o
2016-07-15 13:40:06 +00:00
endif
2016-03-02 23:26:26 +00:00
ifeq ($(WANT_IFADDRS), 1)
2016-07-15 13:40:06 +00:00
DEFINES += -DWANT_IFADDRS
2016-09-19 17:44:20 +00:00
OBJ += $(LIBRETRO_COMM_DIR)/compat/compat_ifaddrs.o
2016-07-15 13:40:06 +00:00
endif
2014-09-14 01:38:36 +00:00
ifneq ($(findstring Win32,$(OS)),)
LIBS += -lws2_32 -liphlpapi
2014-09-14 01:38:36 +00:00
endif
# Netplay
2016-09-29 19:07:10 +00:00
DEFINES += -DHAVE_NETWORK_CMD
OBJ += network/netplay/netplay_delta.o \
network/netplay/netplay_frontend.o \
network/netplay/netplay_handshake.o \
network/netplay/netplay_init.o \
network/netplay/netplay_io.o \
network/netplay/netplay_sync.o \
network/netplay/netplay_discovery.o \
2017-03-04 06:31:24 +00:00
network/netplay/netplay_buf.o \
network/netplay/netplay_room_parse.o
# Retro Achievements
ifeq ($(HAVE_CHEEVOS), 1)
DEFINES += -DHAVE_CHEEVOS
OBJ += cheevos/cheevos.o \
cheevos/var.o \
cheevos/cond.o \
2017-11-23 13:06:33 +00:00
cheevos/badges.o \
$(LIBRETRO_COMM_DIR)/utils/md5.o
endif
2017-09-08 03:30:42 +00:00
ifeq ($(HAVE_KEYMAPPER), 1)
OBJ += input/input_mapper.o
endif
ifeq ($(HAVE_NETWORKGAMEPAD), 1)
OBJ += input/input_remote.o \
2016-07-15 13:40:06 +00:00
cores/libretro-net-retropad/net_retropad_core.o
endif
ifeq ($(HAVE_MINIUPNPC), 1)
ifeq ($(HAVE_BUILTINMINIUPNPC), 1)
DEFINES += -DHAVE_BUILTINMINIUPNPC -DMINIUPNPC_SET_SOCKET_TIMEOUT -DMINIUPNPC_GET_SRC_ADDR
DEFINES += -I$(DEPS_DIR)
2017-02-15 23:59:22 +00:00
OBJ += \
$(DEPS_DIR)/miniupnpc/igd_desc_parse.o \
$(DEPS_DIR)/miniupnpc/upnpreplyparse.o \
$(DEPS_DIR)/miniupnpc/upnpcommands.o \
$(DEPS_DIR)/miniupnpc/upnperrors.o \
$(DEPS_DIR)/miniupnpc/connecthostport.o \
$(DEPS_DIR)/miniupnpc/portlistingparse.o \
$(DEPS_DIR)/miniupnpc/receivedata.o \
$(DEPS_DIR)/miniupnpc/upnpdev.o \
$(DEPS_DIR)/miniupnpc/minissdpc.o \
$(DEPS_DIR)/miniupnpc/miniwget.o \
$(DEPS_DIR)/miniupnpc/miniupnpc.o \
$(DEPS_DIR)/miniupnpc/minixml.o \
$(DEPS_DIR)/miniupnpc/minisoap.o
else
LIBS += -lminiupnpc
endif
endif
2014-09-14 01:38:36 +00:00
endif
ifneq ($(findstring Win32,$(OS)),)
2014-09-14 20:50:29 +00:00
OBJ += media/rarch.o \
2015-10-11 07:26:54 +00:00
gfx/common/win32_common.o \
frontend/drivers/platform_win32.o
2017-01-04 07:07:19 +00:00
OBJ += gfx/drivers/gdi_gfx.o \
gfx/drivers_context/gdi_ctx.o \
gfx/drivers_font/gdi_font.o \
menu/drivers_display/menu_display_gdi.o
LIBS += -lmsimg32
endif
2014-09-14 02:43:18 +00:00
ifeq ($(HAVE_AVFOUNDATION), 1)
ifeq ($(HAVE_COCOA), 1)
DEFINES += -DHAVE_AVFOUNDATION
LIBS += -framework AVFoundation
LIBS += -framework CoreVideo
LIBS += -framework CoreMedia
endif
endif
2014-09-14 02:43:18 +00:00
# Record
ifeq ($(HAVE_FFMPEG), 1)
2015-06-20 22:37:19 +00:00
OBJ += record/drivers/record_ffmpeg.o \
2015-10-19 14:55:08 +00:00
cores/libretro-ffmpeg/ffmpeg_core.o
LIBS += $(AVCODEC_LIBS) $(AVFORMAT_LIBS) $(AVUTIL_LIBS) $(SWSCALE_LIBS) $(SWRESAMPLE_LIBS) $(FFMPEG_LIBS)
DEFINES += $(AVCODEC_CFLAGS) $(AVFORMAT_CFLAGS) $(AVUTIL_CFLAGS) $(SWSCALE_CFLAGS) $(SWRESAMPLE_CFLAGS)
2016-05-08 07:37:27 +00:00
DEFINES += -Wno-deprecated-declarations -DHAVE_FFMPEG -Iffmpeg
2014-09-14 02:43:18 +00:00
endif
2014-09-16 17:20:33 +00:00
ifeq ($(HAVE_COMPRESSION), 1)
DEFINES += -DHAVE_COMPRESSION
2016-09-18 17:05:17 +00:00
OBJ += tasks/task_decompress.o
endif
2014-09-16 17:20:33 +00:00
2015-04-19 22:38:55 +00:00
ifeq ($(HAVE_COCOA),1)
2016-02-09 16:36:59 +00:00
DEFINES += -DHAVE_MAIN
OBJ += input/drivers/cocoa_input.o \
2016-09-19 17:44:20 +00:00
input/drivers_keyboard/keyboard_event_apple.o \
ui/drivers/ui_cocoa.o \
ui/drivers/cocoa/ui_cocoa_window.o \
ui/drivers/cocoa/ui_cocoa_browser_window.o \
ui/drivers/cocoa/ui_cocoa_msg_window.o \
ui/drivers/cocoa/ui_cocoa_application.o \
ui/drivers/cocoa/cocoa_common.o \
gfx/drivers_context/cocoa_gl_ctx.o
2015-04-19 22:38:55 +00:00
endif
2017-01-21 22:41:20 +00:00
ifneq ($(findstring DOS,$(OS)),)
2017-01-24 05:55:55 +00:00
OBJ += gfx/drivers/vga_gfx.o gfx/drivers_font/vga_font.o \
input/drivers/dos_input.o input/drivers_joypad/dos_joypad.o \
frontend/drivers/platform_dos.o input/drivers_keyboard/keyboard_event_dos.o
2017-01-21 22:41:20 +00:00
ifeq ($(HAVE_MENU_COMMON), 1)
OBJ += menu/drivers_display/menu_display_vga.o
endif
endif