# This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # You may obtain a copy of the Licence at # http://www.gnu.org/licences/lgpl.html # # As a special exception this file can also be included in modules # with other source code as long as that source code has been # released under an Open Source Initiative certificed licence. # More information about OSI certification can be found at: # http://www.opensource.org # # This module is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public Licence for more details. # # This module was created by members of the firebird development # team. All individual contributions remain the Copyright (C) of # those individuals and all rights are reserved. Contributors to # this file are either listed below or can be obtained from a CVS # history command. # # Created by: Mark O'Donohue # # Contributor(s): # # # $Id: Makefile.in.embed.util,v 1.5 2003-02-12 09:23:12 eku Exp $ # ROOT=.. ObjModuleName=embed.util include $(ROOT)/gen/make.platform include $(ROOT)/gen/make.rules include $(ROOT)/gen/make.defaults include $(ROOT)/gen/make.shared.variables @SET_MAKE@ CREATEDB_Files= create_db.cpp CREATEDB_Sources = $(addprefix utilities/, $(CREATEDB_Files)) CREATEDB_Objects = $(addprefix $(OBJ)/, $(addsuffix .o, $(basename $(CREATEDB_Sources)))) DROP_Files= drop.cpp DROP_Sources = $(addprefix utilities/, $(DROP_Files)) DROP_Objects = $(addprefix $(OBJ)/, $(addsuffix .o, $(basename $(DROP_Sources)))) GSEC_Files = gsec.cpp GSEC_Sources = $(addprefix utilities/, $(GSEC_Files)) GSEC_Objects = $(addprefix $(OBJ)/, $(addsuffix .o, $(basename $(GSEC_Sources)))) GSTAT_Files = dba.epp ppg.cpp GSTAT_Sources = $(addprefix utilities/, $(GSTAT_Files)) GSTAT_Objects = $(addprefix $(OBJ)/, $(addsuffix .o, $(basename $(GSTAT_Sources)))) IBGUARD_Files = guard.cpp util.cpp IBGUARD_Sources = $(addprefix utilities/, $(IBGUARD_Files)) IBGUARD_Objects = $(addprefix $(OBJ)/, $(addsuffix .o, $(basename $(IBGUARD_Sources)))) IBMGR_Files = ibmgr.cpp srvrmgr.cpp IBMGR_Sources = $(addprefix utilities/, $(IBMGR_Files)) IBMGR_Objects = $(addprefix $(OBJ)/, $(addsuffix .o, $(basename $(IBMGR_Sources)))) REBUILD_Files = rebuild.cpp rstore.epp rmet.epp REBUILD_Sources = $(addprefix utilities/, $(REBUILD_Files)) REBUILD_Objects = $(addprefix $(OBJ)/, $(addsuffix .o, $(basename $(REBUILD_Sources)))) RELAY_Files = relay.cpp RELAY_Sources = $(addprefix utilities/, $(RELAY_Files)) RELAY_Objects = $(addprefix $(OBJ)/, $(addsuffix .o, $(basename $(RELAY_Sources)))) AllObjects = $(CREATEDB_Object) $(DROP_Object) \ $(GSEC_Objects) $(GSTAT_Object) $(IBGUARD_Objects) \ $(IBMGR_Objects) $(REBUILD_Objects) $(RELAY_Objects) AllObjects = $(CREATEDB_Objects) $(DROP_Objects) \ $(GSEC_Objects) $(GSTAT_Objects) Dependencies = $(AllObjects:.o=.d) .PHONY: create_db gstat gds_drop gds_relay gsec ibguard ibmgr_bin all: gstat gds_drop gds_relay gsec # it's important to note here that create_db is linked against the static # 'boot' libraries rather than the later embedded shared library. The # other utilities are released but create_db is used in construction. # MOD 29-July-2002 create_db: $(CREATE_DB) $(CREATE_DB): $(CREATEDB_Objects) $(LIBFBSTATIC_A) $(LIBFBCOMMON_A) $(LD) $(LINK_OPTS) $(CREATEDB_Objects) -o $@ -L$(LIB) -lfbstatic -lfbcommon $(LINK_LIBS) gstat : $(GSTAT) $(GSTAT): $(GSTAT_Objects) $(LIBFBEMBED_SO) $(LD) $(LINK_OPTS) $(GSTAT_Objects) -o $@ -L$(LIB) -lfbembed $(LINK_LIBS) gds_drop: $(GDS_DROP) $(GDS_DROP): $(DROP_Objects) $(LIBFBEMBED_SO) $(LD) $(LINK_OPTS) $(DROP_Objects) -o $@ -L$(LIB) -lfbembed $(LINK_LIBS) gds_relay: $(GDS_RELAY) $(GDS_RELAY): $(RELAY_Objects) $(LIBFBEMBED_SO) $(LD) $(LINK_OPTS) $(RELAY_Objects) -o $@ -L$(LIB) -lfbembed $(LINK_LIBS) gsec: $(GSEC) $(GSEC): $(GSEC_Objects) $(LIBFBEMBED_SO) $(LD) $(LINK_OPTS) $(GSEC_Objects) -o $@ -L$(LIB) -lfbembed $(LINK_LIBS) ibguard: $(IBGUARD) $(IBGUARD): $(IBGUARD_Objects) $(LIBFBEMBED_SO) $(LD) $(LINK_OPTS) $(IBGUARD_Objects) -o $@ -L$(LIB) -lfbembed $(LINK_LIBS) ibmgr_bin: $(IBMGR_BIN) $(IBMGR_BIN): $(IBMGR_Objects) $(LIBFBEMBED_SO) $(LD) $(LINK_OPTS) $(IBMGR_Objects) -o $@ -L$(LIB) -lfbembed $(LINK_LIBS) # This one needs a bit of work. rebuild: $(GDS_REBUILD) $(GDS_REBUILD): $(REBUILD_Objects) $(LIBFBEMBED_SO) $(LD) $(LINK_OPTS) $(REBUILD_Objects) -o $@ -L$(LIB) -lfbembed $(LINK_LIBS) include $(ROOT)/gen/make.shared.targets -include $(Dependencies)