Add linux-portable target
This commit is contained in:
parent
5b28007ceb
commit
d57f89f3f1
9
Makefile
9
Makefile
|
@ -79,6 +79,15 @@ ifeq ($(platform), unix)
|
|||
ifeq ($(HAVE_DYNAREC),1)
|
||||
HAVE_MMAP = 1
|
||||
endif
|
||||
else ifeq ($(platform), linux-portable)
|
||||
TARGET := $(TARGET_NAME)_libretro.so
|
||||
fpic := -fPIC -nostdlib
|
||||
SHARED := -shared $(FORCE_32BIT) -Wl,--version-script=link.T
|
||||
LIBM :=
|
||||
CFLAGS += $(FORCE_32BIT)
|
||||
ifeq ($(HAVE_DYNAREC),1)
|
||||
HAVE_MMAP = 1
|
||||
endif
|
||||
|
||||
# OS X
|
||||
else ifeq ($(platform), osx)
|
||||
|
|
Loading…
Reference in New Issue