Libretro tests - Fixup Windows target filenames

This commit is contained in:
twinaphex 2014-07-30 17:08:33 +02:00
parent c669c0eb21
commit fe129521ee
2 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ endif
CFLAGS += -DARM
else
CC = gcc
TARGET := $(TARGET_NAME)_retro.dll
TARGET := $(TARGET_NAME)_libretro.dll
SHARED := -shared -static-libgcc -static-libstdc++ -s -Wl,--version-script=link.T -Wl,--no-undefined
GL_LIB := -lopengl32
CFLAGS += -I..

View File

@ -42,7 +42,7 @@ else ifeq ($(platform), emscripten)
SHARED := -shared -Wl,--version-script=link.T -Wl,--no-undefined
else
CC = gcc
TARGET := $(TARGET_NAME)_retro.dll
TARGET := $(TARGET_NAME)_libretro.dll
SHARED := -shared -static-libgcc -static-libstdc++ -s -Wl,--version-script=link.T -Wl,--no-undefined
endif