mirror of
https://github.com/libretro/scummvm.git
synced 2024-11-27 11:20:40 +00:00
517 lines
11 KiB
Makefile
517 lines
11 KiB
Makefile
MODULE := backends
|
|
|
|
MODULE_OBJS := \
|
|
base-backend.o \
|
|
modular-backend.o \
|
|
audiocd/audiocd-stream.o \
|
|
audiocd/default/default-audiocd.o \
|
|
events/default/default-events.o \
|
|
fs/abstract-fs.o \
|
|
fs/stdiostream.o \
|
|
keymapper/action.o \
|
|
keymapper/hardware-input.o \
|
|
keymapper/input-watcher.o \
|
|
keymapper/keymap.o \
|
|
keymapper/keymapper.o \
|
|
keymapper/remap-widget.o \
|
|
keymapper/standard-actions.o \
|
|
keymapper/virtual-mouse.o \
|
|
log/log.o \
|
|
midi/alsa.o \
|
|
midi/dmedia.o \
|
|
midi/seq.o \
|
|
midi/sndio.o \
|
|
midi/stmidi.o \
|
|
midi/timidity.o \
|
|
saves/savefile.o \
|
|
saves/default/default-saves.o \
|
|
timer/default/default-timer.o
|
|
|
|
ifdef USE_CLOUD
|
|
ifdef USE_LIBCURL
|
|
MODULE_OBJS += \
|
|
cloud/basestorage.o \
|
|
cloud/cloudicon.o \
|
|
cloud/cloudmanager.o \
|
|
cloud/iso8601.o \
|
|
cloud/storage.o \
|
|
cloud/storagefile.o \
|
|
cloud/downloadrequest.o \
|
|
cloud/folderdownloadrequest.o \
|
|
cloud/savessyncrequest.o \
|
|
cloud/box/boxstorage.o \
|
|
cloud/box/boxlistdirectorybyidrequest.o \
|
|
cloud/box/boxtokenrefresher.o \
|
|
cloud/box/boxuploadrequest.o \
|
|
cloud/dropbox/dropboxstorage.o \
|
|
cloud/dropbox/dropboxcreatedirectoryrequest.o \
|
|
cloud/dropbox/dropboxinforequest.o \
|
|
cloud/dropbox/dropboxlistdirectoryrequest.o \
|
|
cloud/dropbox/dropboxtokenrefresher.o \
|
|
cloud/dropbox/dropboxuploadrequest.o \
|
|
cloud/googledrive/googledrivelistdirectorybyidrequest.o \
|
|
cloud/googledrive/googledrivestorage.o \
|
|
cloud/googledrive/googledrivetokenrefresher.o \
|
|
cloud/googledrive/googledriveuploadrequest.o \
|
|
cloud/id/idstorage.o \
|
|
cloud/id/idcreatedirectoryrequest.o \
|
|
cloud/id/iddownloadrequest.o \
|
|
cloud/id/idlistdirectoryrequest.o \
|
|
cloud/id/idresolveidrequest.o \
|
|
cloud/id/idstreamfilerequest.o \
|
|
cloud/onedrive/onedrivestorage.o \
|
|
cloud/onedrive/onedrivecreatedirectoryrequest.o \
|
|
cloud/onedrive/onedrivetokenrefresher.o \
|
|
cloud/onedrive/onedrivelistdirectoryrequest.o \
|
|
cloud/onedrive/onedriveuploadrequest.o
|
|
endif
|
|
endif
|
|
|
|
ifdef USE_SCUMMVMDLC
|
|
ifdef USE_LIBCURL
|
|
MODULE_OBJS += \
|
|
dlc/scummvmcloud.o
|
|
endif
|
|
endif
|
|
|
|
ifdef USE_DLC
|
|
MODULE_OBJS += \
|
|
dlc/dlcmanager.o
|
|
endif
|
|
|
|
ifdef USE_LIBCURL
|
|
MODULE_OBJS += \
|
|
networking/curl/connectionmanager.o \
|
|
networking/curl/networkreadstream.o \
|
|
networking/curl/curlrequest.o \
|
|
networking/curl/curljsonrequest.o \
|
|
networking/curl/postrequest.o \
|
|
networking/curl/request.o \
|
|
networking/curl/session.o \
|
|
networking/curl/sessionrequest.o \
|
|
networking/curl/socket.o \
|
|
networking/curl/url.o
|
|
endif
|
|
|
|
ifdef USE_SDL_NET
|
|
MODULE_OBJS += \
|
|
networking/sdl_net/client.o \
|
|
networking/sdl_net/getclienthandler.o \
|
|
networking/sdl_net/handlers/createdirectoryhandler.o \
|
|
networking/sdl_net/handlers/downloadfilehandler.o \
|
|
networking/sdl_net/handlers/filesajaxpagehandler.o \
|
|
networking/sdl_net/handlers/filesbasehandler.o \
|
|
networking/sdl_net/handlers/filespagehandler.o \
|
|
networking/sdl_net/handlers/indexpagehandler.o \
|
|
networking/sdl_net/handlers/listajaxhandler.o \
|
|
networking/sdl_net/handlers/resourcehandler.o \
|
|
networking/sdl_net/handlers/uploadfilehandler.o \
|
|
networking/sdl_net/handlerutils.o \
|
|
networking/sdl_net/localwebserver.o \
|
|
networking/sdl_net/reader.o \
|
|
networking/sdl_net/uploadfileclienthandler.o
|
|
endif
|
|
|
|
ifdef USE_CLOUD
|
|
ifdef USE_LIBCURL
|
|
ifdef USE_SDL_NET
|
|
MODULE_OBJS += \
|
|
networking/sdl_net/handlers/connectcloudhandler.o
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
# ENet networking source files.
|
|
ifdef USE_ENET
|
|
MODULE_OBJS += \
|
|
networking/enet/source/callbacks.o \
|
|
networking/enet/source/compress.o \
|
|
networking/enet/source/host.o \
|
|
networking/enet/source/list.o \
|
|
networking/enet/source/packet.o \
|
|
networking/enet/source/peer.o \
|
|
networking/enet/source/protocol.o
|
|
ifdef WIN32
|
|
MODULE_OBJS += \
|
|
networking/enet/source/win32.o
|
|
else
|
|
MODULE_OBJS += \
|
|
networking/enet/source/unix.o
|
|
endif
|
|
MODULE_OBJS += \
|
|
networking/enet/enet.o \
|
|
networking/enet/host.o \
|
|
networking/enet/socket.o
|
|
endif
|
|
|
|
ifdef USE_ELF_LOADER
|
|
MODULE_OBJS += \
|
|
plugins/elf/arm-loader.o \
|
|
plugins/elf/elf-loader.o \
|
|
plugins/elf/elf-provider.o \
|
|
plugins/elf/memory-manager.o \
|
|
plugins/elf/mips-loader.o \
|
|
plugins/elf/ppc-loader.o \
|
|
plugins/elf/shorts-segment-manager.o \
|
|
plugins/elf/version.o
|
|
endif
|
|
|
|
ifdef ENABLE_VKEYBD
|
|
MODULE_OBJS += \
|
|
vkeybd/image-map.o \
|
|
vkeybd/polygon.o \
|
|
vkeybd/virtual-keyboard.o \
|
|
vkeybd/virtual-keyboard-gui.o \
|
|
vkeybd/virtual-keyboard-parser.o
|
|
endif
|
|
|
|
# OpenGL specific source files.
|
|
ifdef USE_OPENGL
|
|
MODULE_OBJS += \
|
|
graphics/opengl/framebuffer.o \
|
|
graphics/opengl/opengl-graphics.o \
|
|
graphics/opengl/shader.o \
|
|
graphics/opengl/texture.o \
|
|
graphics/opengl/pipelines/clut8.o \
|
|
graphics/opengl/pipelines/fixed.o \
|
|
graphics/opengl/pipelines/pipeline.o \
|
|
graphics/opengl/pipelines/libretro.o \
|
|
graphics/opengl/pipelines/libretro/parser.o \
|
|
graphics/opengl/pipelines/shader.o
|
|
endif
|
|
|
|
# SDL specific source files.
|
|
# We cannot just check $BACKEND = sdl, as various other backends
|
|
# derive from the SDL backend, and they all need the following files.
|
|
ifdef SDL_BACKEND
|
|
MODULE_OBJS += \
|
|
events/sdl/legacy-sdl-events.o \
|
|
events/sdl/sdl-events.o \
|
|
graphics/sdl/sdl-graphics.o \
|
|
graphics/surfacesdl/surfacesdl-graphics.o \
|
|
mixer/sdl/sdl-mixer.o \
|
|
mixer/null/null-mixer.o \
|
|
mutex/sdl/sdl-mutex.o \
|
|
timer/sdl/sdl-timer.o
|
|
|
|
ifndef RISCOS
|
|
ifndef KOLIBRIOS
|
|
MODULE_OBJS += plugins/sdl/sdl-provider.o
|
|
endif
|
|
endif
|
|
|
|
# SDL 2 removed audio CD support
|
|
ifndef USE_SDL2
|
|
MODULE_OBJS += \
|
|
audiocd/sdl/sdl-audiocd.o
|
|
endif
|
|
|
|
ifdef USE_OPENGL
|
|
MODULE_OBJS += \
|
|
graphics/openglsdl/openglsdl-graphics.o \
|
|
graphics3d/opengl/framebuffer.o \
|
|
graphics3d/opengl/surfacerenderer.o \
|
|
graphics3d/opengl/texture.o \
|
|
graphics3d/opengl/tiledsurface.o \
|
|
graphics3d/openglsdl/openglsdl-graphics3d.o
|
|
endif
|
|
|
|
ifdef USE_DISCORD
|
|
MODULE_OBJS += \
|
|
presence/discord/discord.o
|
|
endif
|
|
endif
|
|
|
|
ifdef KOLIBRIOS
|
|
MODULE_OBJS += \
|
|
fs/kolibrios/kolibrios-fs.o \
|
|
fs/kolibrios/kolibrios-fs-factory.o \
|
|
fs/posix/posix-iostream.o \
|
|
plugins/kolibrios/kolibrios-provider.o \
|
|
saves/kolibrios/kolibrios-saves.o
|
|
endif
|
|
|
|
ifdef POSIX
|
|
MODULE_OBJS += \
|
|
fs/posix/posix-fs.o \
|
|
fs/posix/posix-fs-factory.o \
|
|
fs/posix/posix-iostream.o \
|
|
fs/posix-drives/posix-drives-fs.o \
|
|
fs/posix-drives/posix-drives-fs-factory.o \
|
|
fs/chroot/chroot-fs-factory.o \
|
|
fs/chroot/chroot-fs.o \
|
|
plugins/posix/posix-provider.o \
|
|
saves/posix/posix-saves.o \
|
|
taskbar/unity/unity-taskbar.o \
|
|
dialogs/gtk/gtk-dialogs.o
|
|
|
|
ifdef USE_SPEECH_DISPATCHER
|
|
ifdef USE_TTS
|
|
MODULE_OBJS += \
|
|
text-to-speech/linux/linux-text-to-speech.o
|
|
endif
|
|
endif
|
|
|
|
endif
|
|
|
|
ifdef MACOSX
|
|
MODULE_OBJS += \
|
|
audiocd/macosx/macosx-audiocd.o \
|
|
dialogs/macosx/macosx-dialogs.o \
|
|
midi/coreaudio.o \
|
|
midi/coremidi.o \
|
|
updates/macosx/macosx-updates.o \
|
|
taskbar/macosx/macosx-taskbar.o
|
|
|
|
ifdef USE_TTS
|
|
MODULE_OBJS += \
|
|
text-to-speech/macosx/macosx-text-to-speech.o
|
|
endif
|
|
|
|
ifdef SDL_BACKEND
|
|
MODULE_OBJS += \
|
|
plugins/sdl/macosx/macosx-provider.o
|
|
endif
|
|
|
|
endif
|
|
|
|
ifdef WIN32
|
|
MODULE_OBJS += \
|
|
audiocd/win32/win32-audiocd.o \
|
|
dialogs/win32/win32-dialogs.o \
|
|
fs/windows/windows-fs.o \
|
|
fs/windows/windows-fs-factory.o \
|
|
midi/windows.o \
|
|
plugins/win32/win32-provider.o \
|
|
saves/windows/windows-saves.o \
|
|
updates/win32/win32-updates.o \
|
|
taskbar/win32/win32-taskbar.o
|
|
|
|
ifdef USE_TTS
|
|
MODULE_OBJS += \
|
|
text-to-speech/windows/windows-text-to-speech.o
|
|
endif
|
|
|
|
endif
|
|
|
|
ifeq ($(BACKEND),3ds)
|
|
MODULE_OBJS += \
|
|
mutex/3ds/3ds-mutex.o
|
|
endif
|
|
|
|
ifeq ($(BACKEND),android)
|
|
MODULE_OBJS += \
|
|
fs/android/android-fs-factory.o \
|
|
fs/android/android-posix-fs.o \
|
|
fs/android/android-saf-fs.o \
|
|
graphics/android/android-graphics.o \
|
|
graphics3d/android/android-graphics3d.o \
|
|
graphics3d/android/texture.o \
|
|
graphics3d/opengl/framebuffer.o \
|
|
graphics3d/opengl/surfacerenderer.o \
|
|
graphics3d/opengl/texture.o \
|
|
graphics3d/opengl/tiledsurface.o \
|
|
mutex/pthread/pthread-mutex.o
|
|
endif
|
|
|
|
ifdef AMIGAOS
|
|
MODULE_OBJS += \
|
|
dialogs/amigaos/amigaos-dialogs.o \
|
|
fs/amigaos/amigaos-fs.o \
|
|
fs/amigaos/amigaos-fs-factory.o \
|
|
midi/camd.o
|
|
endif
|
|
|
|
ifdef MORPHOS
|
|
MODULE_OBJS += \
|
|
fs/morphos/morphos-fs.o \
|
|
fs/morphos/morphos-fs-factory.o \
|
|
dialogs/morphos/morphos-dialogs.o \
|
|
midi/camd.o
|
|
endif
|
|
|
|
ifdef RISCOS
|
|
MODULE_OBJS += \
|
|
events/riscossdl/riscossdl-events.o \
|
|
graphics/riscossdl/riscossdl-graphics.o \
|
|
fs/riscos/riscos-fs.o \
|
|
fs/riscos/riscos-fs-factory.o \
|
|
midi/riscos.o \
|
|
plugins/riscos/riscos-provider.o
|
|
ifndef SDL_BACKEND
|
|
# This is needed for null backend but already included in SDL backend
|
|
MODULE_OBJS += \
|
|
platform/sdl/riscos/riscos-utils.o
|
|
endif
|
|
endif
|
|
|
|
ifdef PLAYSTATION3
|
|
MODULE_OBJS += \
|
|
fs/posix/posix-fs.o \
|
|
fs/posix/posix-fs-factory.o \
|
|
fs/posix/posix-iostream.o \
|
|
fs/ps3/ps3-fs-factory.o \
|
|
events/ps3sdl/ps3sdl-events.o
|
|
endif
|
|
|
|
ifdef USE_LINUXCD
|
|
MODULE_OBJS += \
|
|
audiocd/linux/linux-audiocd.o
|
|
endif
|
|
|
|
ifeq ($(BACKEND),3ds)
|
|
MODULE_OBJS += \
|
|
plugins/3ds/3ds-provider.o
|
|
endif
|
|
|
|
ifeq ($(BACKEND),atari)
|
|
MODULE_OBJS += \
|
|
events/atari/atari-events.o \
|
|
graphics/atari/atari_c2p-asm.o \
|
|
graphics/atari/atari-graphics.o \
|
|
graphics/atari/atari-graphics-asm.o \
|
|
mixer/atari/atari-mixer.o
|
|
endif
|
|
|
|
ifeq ($(BACKEND),ds)
|
|
MODULE_OBJS += \
|
|
events/ds/ds-events.o \
|
|
fs/posix/posix-fs.o \
|
|
fs/posix/posix-fs-factory.o \
|
|
fs/posix/posix-iostream.o \
|
|
fs/posix-drives/posix-drives-fs.o \
|
|
fs/posix-drives/posix-drives-fs-factory.o \
|
|
fs/devoptab/devoptab-fs-factory.o \
|
|
mixer/maxmod/maxmod-mixer.o \
|
|
plugins/ds/ds-provider.o
|
|
endif
|
|
|
|
ifeq ($(BACKEND),dingux)
|
|
MODULE_OBJS += \
|
|
events/dinguxsdl/dinguxsdl-events.o
|
|
endif
|
|
|
|
ifeq ($(BACKEND),gph)
|
|
MODULE_OBJS += \
|
|
events/gph/gph-events.o \
|
|
graphics/gph/gph-graphics.o
|
|
endif
|
|
|
|
ifdef IPHONE
|
|
MODULE_OBJS += \
|
|
mutex/pthread/pthread-mutex.o \
|
|
graphics/ios/ios-graphics.o \
|
|
graphics/ios/renderbuffer.o \
|
|
graphics3d/ios/ios-graphics3d.o \
|
|
graphics3d/opengl/framebuffer.o \
|
|
graphics3d/opengl/surfacerenderer.o \
|
|
graphics3d/opengl/texture.o \
|
|
graphics3d/opengl/tiledsurface.o
|
|
endif
|
|
|
|
ifeq ($(BACKEND),maemo)
|
|
MODULE_OBJS += \
|
|
events/maemosdl/maemosdl-events.o \
|
|
graphics/maemosdl/maemosdl-graphics.o
|
|
endif
|
|
|
|
ifeq ($(BACKEND),n64)
|
|
MODULE_OBJS += \
|
|
fs/n64/n64-fs.o \
|
|
fs/n64/n64-fs-factory.o \
|
|
fs/n64/romfsstream.o
|
|
endif
|
|
|
|
ifeq ($(BACKEND),null)
|
|
MODULE_OBJS += \
|
|
mixer/null/null-mixer.o
|
|
endif
|
|
|
|
ifdef MIYOO
|
|
ifeq ($(MIYOO_TARGET), miyoomini)
|
|
MODULE_OBJS += \
|
|
graphics/miyoo/miyoomini-graphics.o
|
|
endif
|
|
endif
|
|
|
|
ifdef OPENDINGUX
|
|
MODULE_OBJS += \
|
|
graphics/opendingux/opendingux-graphics.o
|
|
endif
|
|
|
|
ifeq ($(BACKEND),openpandora)
|
|
MODULE_OBJS += \
|
|
events/openpandora/op-events.o \
|
|
graphics/openpandora/op-graphics.o
|
|
endif
|
|
|
|
ifeq ($(BACKEND),psp)
|
|
MODULE_OBJS += \
|
|
fs/psp/psp-fs.o \
|
|
fs/psp/psp-fs-factory.o \
|
|
fs/psp/psp-stream.o \
|
|
plugins/psp/psp-provider.o \
|
|
timer/psp/timer.o
|
|
endif
|
|
|
|
ifeq ($(BACKEND),psp2)
|
|
MODULE_OBJS += \
|
|
fs/posix/posix-fs.o \
|
|
fs/posix/posix-iostream.o \
|
|
fs/posix-drives/posix-drives-fs.o \
|
|
fs/posix-drives/posix-drives-fs-factory.o \
|
|
plugins/psp2/psp2-provider.o \
|
|
events/psp2sdl/psp2sdl-events.o
|
|
endif
|
|
|
|
ifeq ($(BACKEND),samsungtv)
|
|
MODULE_OBJS += \
|
|
events/samsungtvsdl/samsungtvsdl-events.o
|
|
endif
|
|
|
|
ifeq ($(BACKEND),wii)
|
|
MODULE_OBJS += \
|
|
fs/wii/wii-fs.o \
|
|
fs/wii/wii-fs-factory.o \
|
|
mutex/wii/wii-mutex.o \
|
|
plugins/wii/wii-provider.o
|
|
endif
|
|
|
|
ifeq ($(BACKEND),switch)
|
|
MODULE_OBJS += \
|
|
events/switchsdl/switchsdl-events.o
|
|
endif
|
|
|
|
ifdef ENABLE_EVENTRECORDER
|
|
MODULE_OBJS += \
|
|
saves/recorder/recorder-saves.o
|
|
# SDL and null backend already add null-mixer
|
|
ifndef SDL_BACKEND
|
|
ifneq ($(BACKEND),null)
|
|
MODULE_OBJS += \
|
|
mixer/null/null-mixer.o
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
ifdef USE_IMGUI
|
|
MODULE_OBJS += \
|
|
imgui/imgui.o \
|
|
imgui/imgui_draw.o \
|
|
imgui/imgui_fonts.o \
|
|
imgui/imgui_tables.o \
|
|
imgui/imgui_widgets.o \
|
|
imgui/misc/freetype/imgui_freetype.o
|
|
endif
|
|
|
|
ifdef USE_SDL2
|
|
ifdef USE_IMGUI
|
|
MODULE_OBJS += \
|
|
imgui/backends/imgui_impl_opengl3.o \
|
|
imgui/backends/imgui_impl_sdl2.o
|
|
endif
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|