diff options
author | notaz | 2013-04-02 02:09:02 +0300 |
---|---|---|
committer | notaz | 2013-04-02 02:09:02 +0300 |
commit | 4b5b6cf713480df38c7e79d669cb9e72d70b3ba0 (patch) | |
tree | 42e9a3430dc0b5b6220ba192e92c9d4b424fa483 /Makefile.libretro | |
parent | 82fe9e470953e4ab34bff66ea65696a2a412291a (diff) | |
download | pcsx_rearmed-4b5b6cf713480df38c7e79d669cb9e72d70b3ba0.tar.gz pcsx_rearmed-4b5b6cf713480df38c7e79d669cb9e72d70b3ba0.tar.bz2 pcsx_rearmed-4b5b6cf713480df38c7e79d669cb9e72d70b3ba0.zip |
libretro: rename targets to be picked by menu
Diffstat (limited to 'Makefile.libretro')
-rw-r--r-- | Makefile.libretro | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.libretro b/Makefile.libretro index 2b20dfa..36e0531 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -20,16 +20,16 @@ CC_AS ?= $(CC) CFLAGS ?= ifeq ($(platform), unix) - TARGET := libretro_pcsx_rearmed.so + TARGET := pcsx_rearmed_libretro.so fpic := -fPIC SHARED := -shared -Wl,--version-script=libretro/link.T else ifeq ($(platform), osx) - TARGET := libretro_pcsx_rearmed.dylib + TARGET := pcsx_rearmed_libretro.dylib fpic := -fPIC SHARED := -dynamiclib else ifeq ($(platform), ios) ARCH := arm - TARGET := libretro_pcsx_rearmed.dylib + TARGET := pcsx_rearmed_libretro.dylib fpic := -fPIC SHARED := -dynamiclib @@ -89,7 +89,7 @@ else ifeq ($(platform), qnx) CFLAGS += -DBASE_ADDR_FIXED=0 -D__BLACKBERRY_QNX__ -marm -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp ASFLAGS += -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp else ifeq ($(platform), arm) - TARGET := libretro_pcsx_rearmed.so + TARGET := pcsx_rearmed_libretro.so HAVE_NEON = 1 USE_DYNAREC = 1 DRC_CACHE_BASE = 0 |