# 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 # and all contributors signed below. # # All Rights Reserved. # Contributor(s): ______________________________________. # # $Id: Makefile.in.client.gsec,v 1.2 2004-11-08 05:50:57 robocop Exp $ # ROOT=.. ObjModuleType=superclient CFLAGS:=-DSUPERCLIENT 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/enc.cpp jrd/isc_file.cpp common/config/config.cpp \ #jrd/os/posix/path_utils.cpp common/config/config_file.cpp \ #jrd/os/posix/config_root.cpp jrd/os/posix/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) $(LD) $(LINK_OPTS) $(GSEC_Objects) -o $@ -L$(LIB) -lfbclient $(LINK_LIBS) $(LIBFBCOMMON_A) include $(ROOT)/gen/make.shared.targets -include $(Dependencies)