aboutsummaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authorAutechre2021-09-17 18:06:12 +0200
committerGitHub2021-09-17 18:06:12 +0200
commit5a0ef7339e5eb875fc486c7459ee26b506eaf087 (patch)
tree8b6932a6eb0f786ea8e922701a0182396a80a7cc /Makefile.common
parentf53deef14f98c659fe9bbd7684656ee88977acbd (diff)
parent7d871ab87d45e535d1512a5834b627cbbce2e66c (diff)
downloadsnes9x2005-5a0ef7339e5eb875fc486c7459ee26b506eaf087.tar.gz
snes9x2005-5a0ef7339e5eb875fc486c7459ee26b506eaf087.tar.bz2
snes9x2005-5a0ef7339e5eb875fc486c7459ee26b506eaf087.zip
Merge pull request #89 from jdgleaver/vfs-support
Replace direct direct file access with VFS routines
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common14
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile.common b/Makefile.common
index f122bce..eace189 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -50,6 +50,20 @@ endif
ifeq ($(LOAD_FROM_MEMORY),1)
FLAGS += -DLOAD_FROM_MEMORY
+else ifneq ($(STATIC_LINKING), 1)
+ SOURCES_C += \
+ $(LIBRETRO_COMM_DIR)/compat/compat_posix_string.c \
+ $(LIBRETRO_COMM_DIR)/compat/compat_strcasestr.c \
+ $(LIBRETRO_COMM_DIR)/compat/compat_strl.c \
+ $(LIBRETRO_COMM_DIR)/compat/fopen_utf8.c \
+ $(LIBRETRO_COMM_DIR)/encodings/encoding_utf.c \
+ $(LIBRETRO_COMM_DIR)/file/file_path.c \
+ $(LIBRETRO_COMM_DIR)/file/file_path_io.c \
+ $(LIBRETRO_COMM_DIR)/streams/file_stream.c \
+ $(LIBRETRO_COMM_DIR)/streams/file_stream_transforms.c \
+ $(LIBRETRO_COMM_DIR)/string/stdstring.c \
+ $(LIBRETRO_COMM_DIR)/time/rtime.c \
+ $(LIBRETRO_COMM_DIR)/vfs/vfs_implementation.c
endif
ifeq ($(USE_OLD_COLOUR_OPS),1)