From 8000b6b55c8c432c081172fa0e169e0eb895bf31 Mon Sep 17 00:00:00 2001 From: Ludwig Nussel Date: Tue, 7 Feb 2012 09:29:13 +0000 Subject: fix mingw64 installer --- Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Makefile') 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 -- cgit