From d2304ebcab4855e9d822f982bfb6470c40c3f279 Mon Sep 17 00:00:00 2001 From: Alejandro Ricoveri Date: Sat, 4 May 2013 20:54:03 -0430 Subject: [PATCH] Makefile fix for Windows Refresher sources were not included for the Windows client build --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ec4cf382..515d3e1d 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,6 @@ # Just type "make" to compile the # # - SDL Client (quake2) # # - Server (q2ded) # -# - SDL OpenGL-Refresher (ref_gl.so or ref_gl.dll) # # - Quake II Game (baseq2) # # # # Base dependencies: # @@ -702,7 +701,7 @@ GAME_DEPS= $(GAME_OBJS:.o=.d) ifeq ($(OSTYPE), Windows) release/quake2.exe : $(CLIENT_OBJS) $(OPENGL_OBJS) icon @echo "===> LD $@" - ${Q}$(CC) build/icon/icon.res $(CLIENT_OBJS) $(LDFLAGS) $(SDLLDFLAGS) -o $@ + ${Q}$(CC) build/icon/icon.res $(CLIENT_OBJS) $(OPENGL_OBJS) $(LDFLAGS) $(SDLLDFLAGS) -o $@ else release/quake2 : $(CLIENT_OBJS) $(OPENGL_OBJS) @echo "===> LD $@"