diff options
author | twinaphex | 2015-03-06 11:28:53 +0100 |
---|---|---|
committer | twinaphex | 2015-03-06 11:28:53 +0100 |
commit | d57f89f3f1cb7730fdaabda0237833ef3235c22c (patch) | |
tree | b8981e8b2a06654f5157ea902e199b67cfc0b0f8 | |
parent | 5b28007ceb08fa39ea8d895f94598670042b7064 (diff) | |
download | picogpsp-d57f89f3f1cb7730fdaabda0237833ef3235c22c.tar.gz picogpsp-d57f89f3f1cb7730fdaabda0237833ef3235c22c.tar.bz2 picogpsp-d57f89f3f1cb7730fdaabda0237833ef3235c22c.zip |
Add linux-portable target
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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) |