8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 17:23:04 +01:00
firebird-mirror/builds/posix/Makefile.in.client.gsec
2005-12-20 12:14:52 +00:00

57 lines
1.8 KiB
Makefile

# The contents of this file are subject to the Initial
# Developer's Public License Version 1.0 (the "License");
# you may not use this file except in compliance with the
# License. You may obtain a copy of the License at
# http://www.ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_idpl.
#
# Software distributed under the License is distributed AS IS,
# WITHOUT WARRANTY OF ANY KIND, either express or implied.
# See the License for the specific language governing rights
# and limitations under the License.
#
# The Original Code was created by Alexander Peshkoff
# for the Firebird Open Source RDBMS project.
#
# Copyright (c) 2004 Alexander Peshkoff <peshkoff@mail.ru>
# and all contributors signed below.
#
# All Rights Reserved.
# Contributor(s): ______________________________________.
#
# $Id: Makefile.in.client.gsec,v 1.8 2005-12-20 12:14:52 alexpeshkoff Exp $
#
ROOT=..
ObjModuleType=superclient
CFLAGS+=-DSUPERCLIENT -DSTD_UTIL @PTHREAD_CFLAGS@
include $(ROOT)/gen/make.defaults
include $(ROOT)/gen/make.platform
include $(ROOT)/gen/make.rules
include $(ROOT)/gen/make.shared.variables
@SET_MAKE@
GSEC_Other_Sources = jrd/isc_file.cpp jrd/isc.cpp common/config/config.cpp common/config/config_file.cpp \
jrd/path_utils.cpp jrd/config_root.cpp jrd/fbsyslog.cpp
GSEC_Files = gsec.cpp call_service.cpp
GSEC_Sources = $(addprefix utilities/gsec/, $(GSEC_Files)) $(GSEC_Other_Sources)
GSEC_Objects = $(addprefix $(OBJ)/, $(addsuffix .o, $(basename $(GSEC_Sources))))
AllObjects = $(GSEC_Objects)
Dependencies = $(AllObjects:.o=.d)
.PHONY: all gsec
all: gsec
gsec: $(LIBFBCLIENT_SO) $(GSEC)
$(GSEC): $(GSEC_Objects) $(COMMON_Objects)
$(LD) $(LINK_OPTS) $^ -o $@ -L$(LIB) -lfbclient $(LINK_LIBS) @PTHREAD_CFLAGS@ @PTHREAD_LIBS@
include $(ROOT)/gen/make.shared.targets
-include $(Dependencies)