Skip to content

Commit

Permalink
(cores) Add more liberal rules
Browse files Browse the repository at this point in the history
  • Loading branch information
inactive123 committed Aug 1, 2015
1 parent 1489839 commit 9864e27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cores/libretro-test-gl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ ifeq ($(platform), unix)
fpic := -fPIC
SHARED := -shared -Wl,--version-script=link.T -Wl,--no-undefined
GL_LIB := -lGL
else ifeq ($(platform), osx)
else ifneq (,$(findstring osx,$(platform)))
TARGET := $(TARGET_NAME)_libretro.dylib
fpic := -fPIC
SHARED := -dynamiclib
Expand Down
2 changes: 1 addition & 1 deletion cores/libretro-test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ else ifeq ($(platform), linux-portable)
fpic := -fPIC -nostdlib
SHARED := -shared -Wl,--version-script=link.T
LIBM :=
else ifeq ($(platform), osx)
else ifneq (,$(findstring osx,$(platform)))
TARGET := $(TARGET_NAME)_libretro.dylib
fpic := -fPIC
SHARED := -dynamiclib
Expand Down

0 comments on commit 9864e27

Please sign in to comment.