diff options
author | twinaphex | 2021-03-25 00:33:51 +0100 |
---|---|---|
committer | twinaphex | 2021-03-25 00:33:51 +0100 |
commit | 3993490baa28964c5e3e8f879b58147184d9b0f7 (patch) | |
tree | 63fc1bbe869b5e2723905193691bba8ba695b70e | |
parent | 0e1ccb3fef5d07b2b9d3e8ad12fe69f704b9669b (diff) | |
download | pcsx_rearmed-3993490baa28964c5e3e8f879b58147184d9b0f7.tar.gz pcsx_rearmed-3993490baa28964c5e3e8f879b58147184d9b0f7.tar.bz2 pcsx_rearmed-3993490baa28964c5e3e8f879b58147184d9b0f7.zip |
Get rid of interpreter name
-rw-r--r-- | Makefile.libretro | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Makefile.libretro b/Makefile.libretro index bdc7b6e..ac91cf8 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -94,9 +94,6 @@ else ifeq ($(platform), osx) TARGET := $(TARGET_NAME)_libretro.dylib fpic := -fPIC HAVE_NEON = 0 -ifeq ($(DYNAREC),0) - TARGET := $(TARGET_NAME)_interpreter_libretro.dylib -endif MACSOSVER = `sw_vers -productVersion | cut -d. -f 1` OSXVER = `sw_vers -productVersion | cut -d. -f 2` OSX_LT_MAVERICKS = `(( $(OSXVER) <= 9)) && echo "YES"` @@ -124,9 +121,6 @@ ifeq ($(DYNAREC),lightrec) # Override DYNAREC := 0 endif -ifeq ($(DYNAREC),0) - TARGET := $(TARGET_NAME)_interpreter_libretro_ios.dylib -endif fpic := -fPIC ifeq ($(IOSSDK),) @@ -165,9 +159,6 @@ ifeq ($(DYNAREC),lightrec) # Override DYNAREC := 0 endif -ifeq ($(DYNAREC),0) - TARGET := $(TARGET_NAME)_interpreter_libretro_tvos.dylib -endif fpic := -fPIC ifeq ($(IOSSDK),) |