mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
Fix -lqfnet errors
This commit is contained in:
parent
344162547f
commit
d5dabdf3d8
2 changed files with 3 additions and 3 deletions
|
@ -73,7 +73,7 @@ qf_client_LIBS= $(top_builddir)/libs/video/targets/libQFjs.la \
|
|||
$(top_builddir)/libs/audio/libQFsound.la \
|
||||
$(top_builddir)/libs/util/libQFutil.la
|
||||
|
||||
client_LIBS= -L. -lqfnet $(ASM) $(qf_client_LIBS) $(NET_LIBS)
|
||||
client_LIBS= -L. libqfnet.la $(ASM) $(qf_client_LIBS) $(NET_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 \
|
||||
|
|
|
@ -82,7 +82,7 @@ qf_server_LIBS= $(top_builddir)/libs/models/libQFmodels.la \
|
|||
$(top_builddir)/libs/util/libQFutil.la
|
||||
|
||||
qw_server_SOURCES= $(common_SOURCES) $(server_SOURCES)
|
||||
qw_server_LDADD= -L. -lqfnet $(ASM) $(qf_server_LIBS) $(NET_LIBS) $(DL_LIBS)
|
||||
qw_server_LDADD= -L. libqfnet.la $(ASM) $(qf_server_LIBS) $(NET_LIBS) $(DL_LIBS)
|
||||
qw_server_DEPENDENCIES= libqfnet.la $(ASM) $(qf_server_LIBS)
|
||||
|
||||
# Client builds
|
||||
|
@ -100,7 +100,7 @@ qf_client_LIBS= $(top_builddir)/libs/video/targets/libQFjs.la \
|
|||
$(top_builddir)/libs/audio/libQFsound.la \
|
||||
$(top_builddir)/libs/util/libQFutil.la
|
||||
|
||||
client_LIBS= -L. -lqfnet $(ASM) $(qf_client_LIBS) $(NET_LIBS)
|
||||
client_LIBS= -L. libqfnet.la $(ASM) $(qf_client_LIBS) $(NET_LIBS)
|
||||
client_LIB_DEPS= libqfnet.la $(ASM) $(qf_client_LIBS)
|
||||
# libQFjs is seperate because it needs to be linked after when building statically
|
||||
|
||||
|
|
Loading…
Reference in a new issue