8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 22:43:03 +01:00

Correct POSIX SuperServer build dependency tracking problem

This commit is contained in:
skidder 2004-08-17 22:34:26 +00:00
parent 019c1e3eee
commit 5400dcc669

View File

@ -27,7 +27,7 @@
# Contributor(s):
#
#
# $Id: Makefile.in.fbserver,v 1.14 2004-04-30 23:02:07 brodsom Exp $
# $Id: Makefile.in.fbserver,v 1.15 2004-08-17 22:34:26 skidder Exp $
#
ROOT=..
ObjModuleType=superserver
@ -43,20 +43,14 @@ include $(ROOT)/gen/make.shared.variables
SERVER_Files = $(OS_ServerFiles) server.cpp server_stub.cpp
SERVER_Sources = $(addprefix remote/, $(SERVER_Files))
SERVER_Objects = $(addprefix $(OBJ)/, $(addsuffix .o, $(basename $(SERVER_Sources))))
AllObjects = $(SERVER_Objects)
Dependencies = $(AllObjects:.o=.d)
SERVER_Objects = $(addprefix $(OBJ)/, $(addsuffix .o, $(basename $(SERVER_Sources)))) $(LIBFBSERVER_Objects)
.PHONY: fbserver
fbserver : $(FB_SUPER_SERVER)
$(FB_SUPER_SERVER): $(SERVER_Objects) $(LIBFBSERVER_Objects)
$(FB_SUPER_SERVER): $(SERVER_Objects)
$(LD) $(LINK_OPTS) $^ -o $@ -L$(LIB) $(LIB_GUI) $(LINK_LIBS)
AllObjects = $(SERVER_Objects)