Add compat_strcasestr to Salamander builds
This commit is contained in:
parent
b3791cec89
commit
2f5d2d4b9f
|
@ -18,26 +18,26 @@ APP_RSF = ctr/tools/template.rsf
|
||||||
APP_SYSTEM_MODE = 64MB
|
APP_SYSTEM_MODE = 64MB
|
||||||
APP_SYSTEM_MODE_EXT = 124MB
|
APP_SYSTEM_MODE_EXT = 124MB
|
||||||
|
|
||||||
OBJ :=
|
OBJ := ctr/ctr_system.o \
|
||||||
OBJ += ctr/ctr_system.o
|
ctr/ctr_memory.o \
|
||||||
OBJ += ctr/ctr_memory.o
|
ctr/ctr_linear.o \
|
||||||
OBJ += ctr/ctr_linear.o
|
frontend/frontend_salamander.o \
|
||||||
OBJ += frontend/frontend_salamander.o
|
frontend/frontend_driver.o \
|
||||||
OBJ += frontend/frontend_driver.o
|
frontend/drivers/platform_ctr.o \
|
||||||
OBJ += frontend/drivers/platform_ctr.o
|
frontend/drivers/platform_null.o \
|
||||||
OBJ += frontend/drivers/platform_null.o
|
libretro-common/compat/compat_strcasestr.o \
|
||||||
OBJ += libretro-common/file/file_path.o
|
libretro-common/file/file_path.o \
|
||||||
OBJ += libretro-common/string/stdstring.o
|
libretro-common/string/stdstring.o \
|
||||||
OBJ += libretro-common/lists/string_list.o
|
libretro-common/lists/string_list.o \
|
||||||
OBJ += libretro-common/lists/dir_list.o
|
libretro-common/lists/dir_list.o \
|
||||||
OBJ += libretro-common/file/retro_dirent.o
|
libretro-common/file/retro_dirent.o \
|
||||||
OBJ += libretro-common/compat/compat_strl.o
|
libretro-common/compat/compat_strl.o \
|
||||||
OBJ += libretro-common/file/config_file.o
|
libretro-common/file/config_file.o \
|
||||||
OBJ += libretro-common/streams/file_stream.o
|
libretro-common/streams/file_stream.o \
|
||||||
OBJ += libretro-common/file/retro_stat.o
|
libretro-common/file/retro_stat.o \
|
||||||
OBJ += libretro-common/hash/rhash.o
|
libretro-common/hash/rhash.o \
|
||||||
OBJ += file_path_str.o
|
file_path_str.o \
|
||||||
OBJ += verbosity.o
|
verbosity.o
|
||||||
|
|
||||||
ifeq ($(strip $(DEVKITPRO)),)
|
ifeq ($(strip $(DEVKITPRO)),)
|
||||||
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>devkitpro")
|
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>devkitpro")
|
||||||
|
|
|
@ -31,6 +31,7 @@ PPU_SRCS = frontend/frontend_salamander.c \
|
||||||
libretro-common/hash/rhash.c \
|
libretro-common/hash/rhash.c \
|
||||||
libretro-common/string/stdstring.c \
|
libretro-common/string/stdstring.c \
|
||||||
libretro-common/compat/compat_strl.c \
|
libretro-common/compat/compat_strl.c \
|
||||||
|
libretro-common/compat/compat_strcasestr.c \
|
||||||
libretro-common/streams/file_stream.c \
|
libretro-common/streams/file_stream.c \
|
||||||
libretro-common/file/config_file.c \
|
libretro-common/file/config_file.c \
|
||||||
file_path_str.c \
|
file_path_str.c \
|
||||||
|
|
|
@ -41,6 +41,7 @@ OBJS = frontend/frontend_salamander.o \
|
||||||
libretro-common/lists/dir_list.o \
|
libretro-common/lists/dir_list.o \
|
||||||
libretro-common/file/retro_dirent.o \
|
libretro-common/file/retro_dirent.o \
|
||||||
libretro-common/compat/compat_strl.o \
|
libretro-common/compat/compat_strl.o \
|
||||||
|
libretro-common/compat/compat_strcasestr.o \
|
||||||
libretro-common/file/config_file.o \
|
libretro-common/file/config_file.o \
|
||||||
libretro-common/streams/file_stream.o \
|
libretro-common/streams/file_stream.o \
|
||||||
libretro-common/file/retro_stat.o \
|
libretro-common/file/retro_stat.o \
|
||||||
|
|
|
@ -42,6 +42,7 @@ OBJS = frontend/frontend_salamander.o \
|
||||||
libretro-common/lists/dir_list.o \
|
libretro-common/lists/dir_list.o \
|
||||||
libretro-common/file/retro_dirent.o \
|
libretro-common/file/retro_dirent.o \
|
||||||
libretro-common/compat/compat_strl.o \
|
libretro-common/compat/compat_strl.o \
|
||||||
|
libretro-common/compat/compat_strcasestr.o \
|
||||||
libretro-common/file/config_file.o \
|
libretro-common/file/config_file.o \
|
||||||
libretro-common/streams/file_stream.o \
|
libretro-common/streams/file_stream.o \
|
||||||
libretro-common/file/retro_stat.o \
|
libretro-common/file/retro_stat.o \
|
||||||
|
|
|
@ -53,6 +53,7 @@ OBJ = frontend/frontend_salamander.o \
|
||||||
libretro-common/file/retro_dirent.o \
|
libretro-common/file/retro_dirent.o \
|
||||||
libretro-common/file/retro_stat.o \
|
libretro-common/file/retro_stat.o \
|
||||||
libretro-common/compat/compat_strl.o \
|
libretro-common/compat/compat_strl.o \
|
||||||
|
libretro-common/compat/compat_strcasestr.o \
|
||||||
libretro-common/file/config_file.o \
|
libretro-common/file/config_file.o \
|
||||||
file_path_str.o \
|
file_path_str.o \
|
||||||
verbosity.o \
|
verbosity.o \
|
||||||
|
|
Loading…
Reference in New Issue