diff --git a/Makefile.ctr.salamander b/Makefile.ctr.salamander index 9c05fd6b54..ffd3082f3f 100644 --- a/Makefile.ctr.salamander +++ b/Makefile.ctr.salamander @@ -38,6 +38,7 @@ OBJ := ctr/ctr_system.o \ libretro-common/streams/file_stream.o \ libretro-common/vfs/vfs_implementation.o \ libretro-common/hash/rhash.o \ + libretro-common/time/rtime.o \ file_path_str.o \ verbosity.o diff --git a/Makefile.ps3.salamander b/Makefile.ps3.salamander index 5ef63d2372..09cd045b42 100644 --- a/Makefile.ps3.salamander +++ b/Makefile.ps3.salamander @@ -59,6 +59,7 @@ PPU_SRCS = frontend/frontend_salamander.c \ libretro-common/streams/file_stream.c \ libretro-common/vfs/vfs_implementation.c \ libretro-common/file/config_file.c \ + libretro-common/time/rtime.c \ file_path_str.c \ verbosity.c diff --git a/Makefile.psl1ght.salamander b/Makefile.psl1ght.salamander index cb9ad3898c..ef504cbdd5 100644 --- a/Makefile.psl1ght.salamander +++ b/Makefile.psl1ght.salamander @@ -70,6 +70,7 @@ OBJ = frontend/frontend_salamander.o \ libretro-common/streams/file_stream.o \ libretro-common/vfs/vfs_implementation.o \ libretro-common/file/config_file.o \ + libretro-common/time/rtime.c \ file_path_str.o \ verbosity.o diff --git a/Makefile.psp1.salamander b/Makefile.psp1.salamander index ce72543fae..ef3f77c3ea 100644 --- a/Makefile.psp1.salamander +++ b/Makefile.psp1.salamander @@ -49,6 +49,7 @@ OBJS = frontend/frontend_salamander.o \ libretro-common/streams/file_stream.o \ libretro-common/vfs/vfs_implementation.o \ libretro-common/hash/rhash.o \ + libretro-common/time/rtime.o \ file_path_str.o \ verbosity.o \ bootstrap/psp1/kernel_functions.o diff --git a/Makefile.vita.salamander b/Makefile.vita.salamander index 7081793bf8..726618d6e1 100644 --- a/Makefile.vita.salamander +++ b/Makefile.vita.salamander @@ -49,6 +49,7 @@ OBJS = frontend/frontend_salamander.o \ libretro-common/streams/file_stream.o \ libretro-common/vfs/vfs_implementation.o \ libretro-common/hash/rhash.o \ + libretro-common/time/rtime.o \ file_path_str.o \ verbosity.o diff --git a/Makefile.wii.salamander b/Makefile.wii.salamander index 81117e7151..933982613d 100644 --- a/Makefile.wii.salamander +++ b/Makefile.wii.salamander @@ -69,6 +69,7 @@ OBJ = frontend/frontend_salamander.o \ libretro-common/compat/compat_strcasestr.o \ libretro-common/compat/fopen_utf8.o \ libretro-common/file/config_file.o \ + libretro-common/time/rtime.o \ file_path_str.o \ verbosity.o \ $(APP_BOOTER_DIR)/app_booter.binobj diff --git a/Makefile.wiiu b/Makefile.wiiu index bb6cedd9d0..9e39411c0a 100644 --- a/Makefile.wiiu +++ b/Makefile.wiiu @@ -67,6 +67,7 @@ ifeq ($(SALAMANDER_BUILD),1) OBJ += libretro-common/streams/file_stream.o OBJ += libretro-common/vfs/vfs_implementation.o OBJ += libretro-common/hash/rhash.o + OBJ += libretro-common/time/rtime.o OBJ += file_path_str.o OBJ += verbosity.o