aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortwinaphex2014-12-13 05:53:54 +0100
committertwinaphex2014-12-13 05:53:54 +0100
commit3a92bf0b7a2d929f53ae69cf761721c136f9036d (patch)
treea32adc2e685101e75d83ef8b64195c690121bc70 /Makefile
parent13bb560e427a36c6900ea09061efecc2a67d53d0 (diff)
downloadpcsx_rearmed-3a92bf0b7a2d929f53ae69cf761721c136f9036d.tar.gz
pcsx_rearmed-3a92bf0b7a2d929f53ae69cf761721c136f9036d.tar.bz2
pcsx_rearmed-3a92bf0b7a2d929f53ae69cf761721c136f9036d.zip
Add mman wrapper for Win32 and use it for PCSX ReARmed libretro Win32
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 6187958..9568d0e 100644
--- a/Makefile
+++ b/Makefile
@@ -195,6 +195,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"