~ubuntu-branches/ubuntu/karmic/firebird2.1/karmic

« back to all changes in this revision

Viewing changes to builds/posix/Makefile.in.client.gsec

  • Committer: Bazaar Package Importer
  • Author(s): Damyan Ivanov
  • Date: 2008-05-26 23:59:25 UTC
  • Revision ID: james.westby@ubuntu.com-20080526235925-2pnqj6nxpppoeaer
Tags: upstream-2.1.0.17798-0.ds2
ImportĀ upstreamĀ versionĀ 2.1.0.17798-0.ds2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# The contents of this file are subject to the Initial
 
2
# Developer's Public License Version 1.0 (the "License");
 
3
# you may not use this file except in compliance with the
 
4
# License. You may obtain a copy of the License at
 
5
# http://www.ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_idpl.
 
6
#
 
7
# Software distributed under the License is distributed AS IS,
 
8
# WITHOUT WARRANTY OF ANY KIND, either express or implied.
 
9
# See the License for the specific language governing rights
 
10
# and limitations under the License.
 
11
#
 
12
# The Original Code was created by Alexander Peshkoff
 
13
# for the Firebird Open Source RDBMS project.
 
14
#
 
15
# Copyright (c) 2004 Alexander Peshkoff <peshkoff@mail.ru>
 
16
# and all contributors signed below.
 
17
#
 
18
# All Rights Reserved.
 
19
# Contributor(s): ______________________________________.
 
20
#
 
21
# $Id: Makefile.in.client.gsec,v 1.9 2007/12/14 11:31:56 alexpeshkoff Exp $
 
22
#
 
23
ROOT=..
 
24
ObjModuleType=superclient
 
25
CFLAGS+=-DSUPERCLIENT -DSTD_UTIL @PTHREAD_CFLAGS@
 
26
 
 
27
include     $(ROOT)/gen/make.defaults
 
28
include     $(ROOT)/gen/make.platform
 
29
include     $(ROOT)/gen/make.rules
 
30
include     $(ROOT)/gen/make.shared.variables
 
31
 
 
32
@SET_MAKE@
 
33
 
 
34
GSEC_Other_Sources = jrd/isc_file.cpp jrd/isc.cpp common/config/config.cpp common/config/config_file.cpp \
 
35
jrd/path_utils.cpp jrd/config_root.cpp jrd/fbsyslog.cpp 
 
36
GSEC_Files =  gsec.cpp call_service.cpp
 
37
GSEC_Sources = $(addprefix utilities/gsec/, $(GSEC_Files)) $(GSEC_Other_Sources)
 
38
GSEC_Objects = $(addprefix $(OBJ)/, $(addsuffix .o, $(basename $(GSEC_Sources))))
 
39
 
 
40
AllObjects = $(GSEC_Objects)
 
41
 
 
42
Dependencies = $(AllObjects:.o=.d) 
 
43
 
 
44
 
 
45
.PHONY: all gsec 
 
46
 
 
47
all: gsec
 
48
 
 
49
gsec: $(LIBFBCLIENT_SO) $(GSEC)
 
50
 
 
51
$(GSEC):        $(GSEC_Objects) $(COMMON_Objects)
 
52
        $(EXE_LINK) $(LINK_OPTS) $^ -o $@ -L$(LIB) -lfbclient $(LINK_LIBS) @PTHREAD_CFLAGS@ @PTHREAD_LIBS@
 
53
 
 
54
include $(ROOT)/gen/make.shared.targets
 
55
 
 
56
-include $(Dependencies)