depend on libqfnet.la instead of libqfnet.a

This commit is contained in:
Adam Olsen 2001-06-16 22:33:56 +00:00
parent 9f158b148e
commit 4f28b39b01
2 changed files with 5 additions and 5 deletions

View file

@ -74,7 +74,7 @@ qf_client_LIBS= $(top_builddir)/libs/video/targets/libQFjs.la \
$(top_builddir)/libs/util/libQFutil.la
client_LIBS= -L. -lqfnet $(ASM) $(qf_client_LIBS) $(NET_LIBS)
client_LIB_DEPS= libqfnet.a $(ASM) $(qf_client_LIBS)
client_LIB_DEPS= libqfnet.la $(ASM) $(qf_client_LIBS)
client_SOURCES= cl_cam.c cl_cmd.c cl_demo.c cl_input.c cl_main.c cl_screen.c \
cl_parse.c cl_tent.c \
@ -159,8 +159,8 @@ nq_wgl_DEPENDENCIES=../../libs/video/renderer/libQFrenderer_gl.la ../../libs/mod
ded_SOURCES= sys_unixd.c sv_ded.c
nq_server_SOURCES= $(common_SOURCES) $(server_SOURCES) $(ded_SOURCES)
nq_server_LDADD= libqfnet.a $(ASM)
nq_server_DEPENDENCIES= libqfnet.a $(ASM)
nq_server_LDADD= libqfnet.la $(ASM)
nq_server_DEPENDENCIES= libqfnet.la $(ASM)
# Stuff that doesn't get linked into an executable NEEDS to be mentioned here,
# or it won't be distributed with 'make dist'

View file

@ -83,7 +83,7 @@ qf_server_LIBS= $(top_builddir)/libs/models/libQFmodels.la \
qw_server_SOURCES= $(common_SOURCES) $(server_SOURCES)
qw_server_LDADD= -L. -lqfnet $(ASM) $(qf_server_LIBS) $(NET_LIBS) $(DL_LIBS)
qw_server_DEPENDENCIES= libqfnet.a $(ASM) $(qf_server_LIBS)
qw_server_DEPENDENCIES= libqfnet.la $(ASM) $(qf_server_LIBS)
# Client builds
#
@ -101,7 +101,7 @@ qf_client_LIBS= $(top_builddir)/libs/video/targets/libQFjs.la \
$(top_builddir)/libs/util/libQFutil.la
client_LIBS= -L. -lqfnet $(ASM) $(qf_client_LIBS) $(NET_LIBS)
client_LIB_DEPS= libqfnet.a $(ASM) $(qf_client_LIBS)
client_LIB_DEPS= libqfnet.la $(ASM) $(qf_client_LIBS)
# libQFjs is seperate because it needs to be linked after when building statically
client_SOURCES= cl_cam.c cl_cmd.c cl_cvar.c cl_demo.c cl_ents.c cl_input.c \