summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLudwig Nussel <ludwig.nussel@suse.de>2012-02-07 09:29:13 +0000
committerTim Angus <tim@ngus.net>2013-01-12 20:18:09 +0000
commit8000b6b55c8c432c081172fa0e169e0eb895bf31 (patch)
treec5bf7538303195a4773abcc79e2d1668641ce9c9 /Makefile
parentb77b6c5d0e5f64497b9e79c84547b05d1d6f7ba4 (diff)
fix mingw64 installer
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 2e621c90..b3fbfa2f 100644
--- a/Makefile
+++ b/Makefile
@@ -545,16 +545,19 @@ ifeq ($(PLATFORM),mingw32)
$(LIBSDIR)/win32/libSDL.dll.a
RENDERER_LIBS += $(LIBSDIR)/win32/libSDLmain.a \
$(LIBSDIR)/win32/libSDL.dll.a
+ SDLDLL=SDL.dll
else
CLIENT_LIBS += $(LIBSDIR)/win64/libSDLmain.a \
$(LIBSDIR)/win64/libSDL64.dll.a
RENDERER_LIBS += $(LIBSDIR)/win64/libSDLmain.a \
$(LIBSDIR)/win64/libSDL64.dll.a
+ SDLDLL=SDL64.dll
endif
else
CLIENT_CFLAGS += $(SDL_CFLAGS)
CLIENT_LIBS += $(SDL_LIBS)
RENDERER_LIBS += $(SDL_LIBS)
+ SDLDLL=SDL.dll
endif
BUILD_CLIENT_SMP = 0