mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
Makefile fix for Windows
Refresher sources were not included for the Windows client build
This commit is contained in:
parent
2b0974822c
commit
d2304ebcab
1 changed files with 1 additions and 2 deletions
3
Makefile
3
Makefile
|
@ -4,7 +4,6 @@
|
||||||
# Just type "make" to compile the #
|
# Just type "make" to compile the #
|
||||||
# - SDL Client (quake2) #
|
# - SDL Client (quake2) #
|
||||||
# - Server (q2ded) #
|
# - Server (q2ded) #
|
||||||
# - SDL OpenGL-Refresher (ref_gl.so or ref_gl.dll) #
|
|
||||||
# - Quake II Game (baseq2) #
|
# - Quake II Game (baseq2) #
|
||||||
# #
|
# #
|
||||||
# Base dependencies: #
|
# Base dependencies: #
|
||||||
|
@ -702,7 +701,7 @@ GAME_DEPS= $(GAME_OBJS:.o=.d)
|
||||||
ifeq ($(OSTYPE), Windows)
|
ifeq ($(OSTYPE), Windows)
|
||||||
release/quake2.exe : $(CLIENT_OBJS) $(OPENGL_OBJS) icon
|
release/quake2.exe : $(CLIENT_OBJS) $(OPENGL_OBJS) icon
|
||||||
@echo "===> LD $@"
|
@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
|
else
|
||||||
release/quake2 : $(CLIENT_OBJS) $(OPENGL_OBJS)
|
release/quake2 : $(CLIENT_OBJS) $(OPENGL_OBJS)
|
||||||
@echo "===> LD $@"
|
@echo "===> LD $@"
|
||||||
|
|
Loading…
Reference in a new issue