aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortwinaphex2014-12-13 05:53:54 +0100
committernotaz2014-12-20 20:43:39 +0200
commitce0e7ac9c11993f9165615dec870c50e1c3b39bf (patch)
tree629b0c946cab1a27a3624299c6b09a691ee47a40 /Makefile
parent1e1cccd9ef788b3582002283f6cb7e48db53677f (diff)
downloadpcsx_rearmed-ce0e7ac9c11993f9165615dec870c50e1c3b39bf.tar.gz
pcsx_rearmed-ce0e7ac9c11993f9165615dec870c50e1c3b39bf.tar.bz2
pcsx_rearmed-ce0e7ac9c11993f9165615dec870c50e1c3b39bf.zip
psxmem: Add mman wrapper for Win32 and use it for PCSX ReARmed libretro Win32
Conflicts: Makefile.libretro
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index cc19e77..58de43a 100644
--- a/Makefile
+++ b/Makefile
@@ -189,6 +189,10 @@ endif
ifeq "$(PLATFORM)" "libretro"
OBJS += frontend/libretro.o
CFLAGS += -DFRONTEND_SUPPORTS_RGB565
+
+ifeq ($(MMAP_WIN32),1)
+OBJS += libpcsxcore/memmap_win32.o
+endif
endif
ifeq "$(USE_PLUGIN_LIB)" "1"