Merge pull request #7594 from markwkidd/patch-2

fix libretro-db Makefile
This commit is contained in:
Twinaphex 2018-11-15 21:50:57 +01:00 committed by GitHub
commit 2a39dc7045
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,10 @@ endif
LIBRETRO_COMMON_C = \
$(LIBRETRO_COMM_DIR)/streams/file_stream.c \
$(LIBRETRO_COMM_DIR)/vfs/vfs_implementation.c
$(LIBRETRO_COMM_DIR)/vfs/vfs_implementation.c \
$(LIBRETRO_COMM_DIR)/encodings/encoding_utf.c \
$(LIBRETRO_COMM_DIR)/compat/compat_strl.c \
$(LIBRETRO_COMM_DIR)/compat/fopen_utf8.c
C_CONVERTER_C = \
$(LIBRETRODB_DIR)/rmsgpack.c \
@ -25,9 +28,7 @@ C_CONVERTER_C = \
$(LIBRETRO_COMM_DIR)/hash/rhash.c \
$(LIBRETRO_COMM_DIR)/compat/compat_fnmatch.c \
$(LIBRETRO_COMM_DIR)/string/stdstring.c \
$(LIBRETRO_COMM_DIR)/encodings/encoding_utf.c \
$(LIBRETRO_COMMON_C) \
$(LIBRETRO_COMM_DIR)/compat/compat_strl.c
$(LIBRETRO_COMMON_C)
C_CONVERTER_OBJS := $(C_CONVERTER_C:.c=.o)
@ -40,9 +41,7 @@ RARCHDB_TOOL_C = \
$(LIBRETRODB_DIR)/libretrodb.c \
$(LIBRETRO_COMM_DIR)/compat/compat_fnmatch.c \
$(LIBRETRO_COMM_DIR)/string/stdstring.c \
$(LIBRETRO_COMM_DIR)/encodings/encoding_utf.c \
$(LIBRETRO_COMMON_C) \
$(LIBRETRO_COMM_DIR)/compat/compat_strl.c
$(LIBRETRO_COMMON_C)
RARCHDB_TOOL_OBJS := $(RARCHDB_TOOL_C:.c=.o)