Initial commit
This commit is contained in:
570
backends/module.mk
Normal file
570
backends/module.mk
Normal file
@@ -0,0 +1,570 @@
|
||||
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_HTTP
|
||||
MODULE_OBJS += \
|
||||
networking/http/connectionmanager.o \
|
||||
networking/http/networkreadstream.o \
|
||||
networking/http/httpjsonrequest.o \
|
||||
networking/http/httprequest.o \
|
||||
networking/http/postrequest.o \
|
||||
networking/http/request.o \
|
||||
networking/http/session.o \
|
||||
networking/http/sessionrequest.o
|
||||
|
||||
ifdef USE_CLOUD
|
||||
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
|
||||
|
||||
ifdef USE_SCUMMVMDLC
|
||||
MODULE_OBJS += \
|
||||
dlc/scummvmcloud.o
|
||||
endif
|
||||
endif
|
||||
|
||||
ifdef USE_DLC
|
||||
MODULE_OBJS += \
|
||||
dlc/dlcmanager.o
|
||||
endif
|
||||
|
||||
ifdef USE_LIBCURL
|
||||
MODULE_OBJS += \
|
||||
networking/basic/curl/cacert.o \
|
||||
networking/basic/curl/socket.o \
|
||||
networking/basic/curl/url.o
|
||||
ifdef USE_HTTP
|
||||
MODULE_OBJS += \
|
||||
networking/http/curl/connectionmanager-curl.o \
|
||||
networking/http/curl/networkreadstream-curl.o
|
||||
endif
|
||||
endif
|
||||
|
||||
ifdef EMSCRIPTEN
|
||||
MODULE_OBJS += \
|
||||
fs/emscripten/emscripten-fs-factory.o \
|
||||
fs/emscripten/emscripten-posix-fs.o \
|
||||
fs/emscripten/http-fs.o \
|
||||
midi/webmidi.o
|
||||
ifdef USE_CLOUD
|
||||
MODULE_OBJS += \
|
||||
fs/emscripten/cloud-fs.o
|
||||
endif
|
||||
ifdef USE_HTTP
|
||||
MODULE_OBJS += \
|
||||
networking/http/emscripten/connectionmanager-emscripten.o \
|
||||
networking/http/emscripten/networkreadstream-emscripten.o
|
||||
endif
|
||||
ifdef USE_TTS
|
||||
MODULE_OBJS += \
|
||||
text-to-speech/emscripten/emscripten-text-to-speech.o
|
||||
endif
|
||||
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
|
||||
|
||||
ifdef USE_CLOUD
|
||||
MODULE_OBJS += \
|
||||
networking/sdl_net/handlers/connectcloudhandler.o
|
||||
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/renderer3d.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/sdl-common-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 USE_SDL3
|
||||
ifndef USE_SDL2
|
||||
MODULE_OBJS += \
|
||||
events/sdl/sdl1-events.o
|
||||
endif
|
||||
endif
|
||||
|
||||
ifdef USE_SDL2
|
||||
MODULE_OBJS += \
|
||||
events/sdl/sdl2-events.o
|
||||
endif
|
||||
|
||||
ifdef USE_SDL3
|
||||
MODULE_OBJS += \
|
||||
events/sdl/sdl3-events.o
|
||||
endif
|
||||
|
||||
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
|
||||
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 \
|
||||
mutex/pthread/pthread-mutex.o \
|
||||
networking/basic/android/jni.o \
|
||||
networking/basic/android/socket.o \
|
||||
networking/basic/android/url.o
|
||||
|
||||
ifdef USE_HTTP
|
||||
MODULE_OBJS += \
|
||||
networking/http/android/connectionmanager-android.o \
|
||||
networking/http/android/networkreadstream-android.o
|
||||
endif
|
||||
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 \
|
||||
fs/atari/atari-fs.o \
|
||||
fs/atari/atari-fs-factory.o \
|
||||
graphics/atari/atari-c2p-asm.o \
|
||||
graphics/atari/atari-cursor.o \
|
||||
graphics/atari/atari-graphics.o \
|
||||
graphics/atari/atari-graphics-asm.o \
|
||||
graphics/atari/atari-pendingscreenchanges.o \
|
||||
graphics/atari/atari-screen.o \
|
||||
graphics/atari/atari-supervidel.o \
|
||||
graphics/atari/atari-surface.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
|
||||
|
||||
ifdef IPHONE
|
||||
MODULE_OBJS += \
|
||||
mutex/pthread/pthread-mutex.o \
|
||||
graphics/ios/ios-graphics.o \
|
||||
graphics/ios/renderbuffer.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_demo.o \
|
||||
imgui/imgui_draw.o \
|
||||
imgui/imgui_fonts.o \
|
||||
imgui/imgui_tables.o \
|
||||
imgui/imgui_widgets.o \
|
||||
imgui/imgui_utils.o \
|
||||
imgui/components/imgui_logger.o \
|
||||
imgui/misc/freetype/imgui_freetype.o
|
||||
endif
|
||||
|
||||
ifdef USE_SDL2
|
||||
ifdef USE_IMGUI
|
||||
ifdef USE_OPENGL
|
||||
MODULE_OBJS += \
|
||||
imgui/backends/imgui_impl_opengl3.o
|
||||
endif
|
||||
ifdef USE_IMGUI_SDLRENDERER2
|
||||
MODULE_OBJS += \
|
||||
imgui/backends/imgui_impl_sdlrenderer2.o
|
||||
endif
|
||||
MODULE_OBJS += \
|
||||
imgui/backends/imgui_impl_sdl2.o
|
||||
endif
|
||||
endif
|
||||
|
||||
ifdef USE_SDL3
|
||||
ifdef USE_IMGUI
|
||||
ifdef USE_OPENGL
|
||||
MODULE_OBJS += \
|
||||
imgui/backends/imgui_impl_opengl3.o
|
||||
endif
|
||||
ifdef USE_IMGUI_SDLRENDERER3
|
||||
MODULE_OBJS += \
|
||||
imgui/backends/imgui_impl_sdlrenderer3.o
|
||||
endif
|
||||
MODULE_OBJS += \
|
||||
imgui/backends/imgui_impl_sdl3.o
|
||||
endif
|
||||
endif
|
||||
|
||||
# Include common rules
|
||||
include $(srcdir)/rules.mk
|
||||
Reference in New Issue
Block a user