summaryrefslogtreecommitdiffstats
path: root/ldap/clients/dsgw/Makefile
blob: 037b1f8d854e5a6cf9e4616ca5189f1d96446a1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
# --- BEGIN COPYRIGHT BLOCK ---
# This Program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; version 2 of the License.
# 
# This Program 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 General Public License for more details.
# 
# You should have received a copy of the GNU General Public License along with
# this Program; if not, write to the Free Software Foundation, Inc., 59 Temple
# Place, Suite 330, Boston, MA 02111-1307 USA.
# 
# In addition, as a special exception, Red Hat, Inc. gives You the additional
# right to link the code of this Program with code not covered under the GNU
# General Public License ("Non-GPL Code") and to distribute linked combinations
# including the two, subject to the limitations in this paragraph. Non-GPL Code
# permitted under this exception must only link to the code of this Program
# through those well defined interfaces identified in the file named EXCEPTION
# found in the source code files (the "Approved Interfaces"). The files of
# Non-GPL Code may instantiate templates or use macros or inline functions from
# the Approved Interfaces without causing the resulting work to be covered by
# the GNU General Public License. Only Red Hat, Inc. may make changes or
# additions to the list of Approved Interfaces. You must obey the GNU General
# Public License in all respects for all of the Program code and other code used
# in conjunction with the Program except the Non-GPL Code covered by this
# exception. If you modify this file, you may extend this exception to your
# version of the file, but you are not obligated to do so. If you do not wish to
# provide this exception without modification, you must delete this exception
# statement from your version and license this file solely under the GPL without
# exception. 
# 
# 
# Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
# Copyright (C) 2005 Red Hat, Inc.
# All rights reserved.
# --- END COPYRIGHT BLOCK

# Gmakefile for Directory Server Gateway
#
LDAP_SRC = ../..
BUILD_ROOT = ../../..

include $(BUILD_ROOT)/nsdefs.mk

ifneq ($(ARCH), WINNT)
#OLD_BUILD_ROOT := $(BUILD_ROOT)
#BUILD_ROOT = $(shell cd $(OLD_BUILD_ROOT); pwd)
#OLD_LDAP_SRC := $(LDAP_SRC)
#LDAP_SRC = $(shell cd $(OLD_LDAP_SRC); pwd)
endif

NOSTDCLEAN=true # don't let nsconfig.mak define target clean
NOSTDSTRIP=true # don't let nsconfig.mak define target strip

include $(BUILD_ROOT)/nsconfig.mk
include $(LDAP_SRC)/nsldap.mk

include dsgw_include.mk

# the dsgw binaries should use the standard rpath which includes ../../lib,
# the clients lib location
DSGW_RPATHFLAG=


ifeq ($(LDAP_NO_LIBLCACHE),1)
CFLAGS+=-DNO_LIBLCACHE
endif

ifeq ($(ARCH), HPUX)
# Use C++ compiler when linking on HP to pick up
# exception-handling flag (+eh). We need this because
# we link with other objs compiled with +eh
  ifeq ($(NSOS_RELEASE),B.11.23)
    ifeq ($(USE_64), 1)
      ALDFLAGS += +DD64 -lpthread
    endif
  else
    ifeq ($(USE_64), 1)
      ALDFLAGS += +DA2.0W +DS2.0 +Z -lpthread
    endif
  endif

DSGW_LINK=$(CXX)
else
ifeq ($(ARCH), WINNT)
DSGW_LINK=$(LINK_EXE)
else
ifeq ($(ARCH), Linux)
DSGW_LINK=$(CXX)
else
ifeq ($(ARCH), OSF1)
DSGW_LINK=$(CXX)
else
DSGW_LINK=$(CC)
endif # Linux
endif # OSF1
endif # WINNT
endif # HPUX

ifeq ($(ARCH), SOLARIS)
ifeq ($(USE_64), 1)
ALDFLAGS += -xarch=v9
endif
# removed -lcx from following line
CCC_LINK = -lCstd -lCrun -lm -lw -lc
endif

ifneq ($(ARCH), WINNT)
ifdef USE_LD_RUN_PATH
# LD_RUN_PATH instead of -R RPATH
LD_RUN_PATH=$(RPATHFLAG):$(DSGW_RPATHFLAG)
export LD_RUN_PATH
else # USE_LD_RUN_PATH
DSGW_LINK += $(RPATHFLAG_PREFIX)$(RPATHFLAG):$(DSGW_RPATHFLAG)
endif # USE_LD_RUN_PATH
endif # ! WINNT


ifeq ($(ARCH), AIX)
DSGW_LINK=$(CC)
DSGW_LINK += -brtl -berok $(RPATHFLAG_PREFIX)$(RPATHFLAG):$(DSGW_RPATHFLAG)$(RPATHFLAG_EXTRAS)
endif


BINDIR=$(DSGW_BIN_RELDIR)
OBJDEST=$(OBJDIR)/clients/dsgw/obj

SRCDIR=$(BUILD_ROOT)/ldap/clients/dsgw

ifeq ($(ARCH), WINNT)
ALDFLAGS+=-force:multiple
SUBSYSTEM=console
endif

ifneq ($(ARCH), WINNT)
INSTALLOPTIONS= -m 755
endif

ifeq ($(ARCH), OSF1)
LINKOPTIONS=-lcxx
endif

ifeq ($(ARCH), WINNT)
NSECLIBS = $(NOSSLLIBS)
EXTRA_LIBS += $(LIBS) $(ADMINUTIL_LINK) $(ICULINK) $(NSPRLINK) $(NSHTTPD) 
EXTRA_LIBS_DEP += $(LIBS) $(NSHTTP_DEP)
else
LIBS := $(DISTLIBFLAG) $(LINKOPTIONS) $(LIBLDAPU) $(LDAPLINK) \
	$(ADMINUTIL_LINK) $(DYN_NSHTTPD) \
	$(LDAP_LIBLDBM) $(ICULINK) $(NSPRLINK) \
	$(LDAP_LIBLDIF) $(ALIBS) $(DBMLINK) $(SECURITYLINK) \
	$(THREADSLIB) $(NSPRLINK) $(LDAP_LIBLITEKEY)
LIBS_DEP = $(LIBLDAPU_DEP) $(LDAP_LIBLDBM_DEP) $(LDAP_LIBLDIF_DEP)
LIBS_DEP += $(LDAPSDK_DEP) $(ICU_DEP) $(NSPR_DEP) $(DB_LIB_DEP)
NSECLIBS = $(DISTLIBFLAG) $(SSLLIBFLAG) $(LINKOPTIONS) $(LIBLDAPU) \
	$(LDAP_NOSSL_LINK) $(ADMINUTIL_LINK) \
	$(LDAP_LIBLDBM) $(ICULINK) $(NOSSLLIBS) \
	$(LDAP_LIBLDIF) $(DBMLINK) $(ALIBS) \
	$(THREADSLIB) $(NSPRLINK) $(LDAP_LIBLITEKEY)
endif

NSECLIBS_DEP=$(SECGLUEOBJS)
NSECLIBS_DEP += $(ICU_DEP)

#EXTRA_LIBS += -l$(LIBARES)

ifeq ($(ARCH), Linux)
LIBS += -lcrypt
NSECLIBS += -lcrypt
endif

# these are the programs we must build
PROGS= auth doauth edit domodify dnedit dosearch
BINS= $(addprefix $(BINDIR)/, $(PROGS))

# The rest of the CGI programs do not use LIBLDAP and SSL at all, so we
# link them with glue routines instead of the full libsec.  This is done
# only to reduce our footprint.
# these are also programs we need to build
NEED_SECGLUE = unauth search csearch newentry tutor lang  

ifneq ($(ARCH), WINNT)
NEED_SECGLUE_BINS = $(addprefix $(BINDIR)/, $(NEED_SECGLUE))
else
NEED_SECGLUE_BINS = $(addprefix $(BINDIR)/, $(addsuffix .exe, $(NEED_SECGLUE)))
endif

CKUTILPROGS= ckput ckget ckdump ckpurge ckdel
CKUTILBINS= $(addprefix $(BINDIR)/, $(CKUTILPROGS))

CMNOBJS= htmlout.o htmlparse.o error.o cgiutil.o dsgwutil.o ldaputil.o \
	entrydisplay.o config.o	cookie.o emitauth.o emitf.o collate.o vcard.o \
	Versiongw.o utf8compare.o

# MLM
ifeq ($(ARCH), WINNT)
CMNOBJS += getopt.o
endif

COMMONOBJS= $(addprefix $(OBJDEST)/, $(CMNOBJS))
COMMONOBJSREL= $(addprefix ../obj/, $(CMNOBJS))

NOSSLCMNOBJS= htmlout.o htmlparse.o error.o cgiutil.o dsgwutil.o config.o \
	cookie.o emitauth.o emitf.o collate.o Versiongw.o utf8compare.o
NOSSLCOMMONOBJS=$(addprefix $(OBJDEST)/, $(NOSSLCMNOBJS))
NOSSLCOMMONOBJSREL=$(addprefix ../obj/, $(NOSSLCMNOBJS))

SCGLOBJS= secglue.o
SECGLUEOBJS=$(addprefix $(OBJDEST)/, $(SCGLOBJS))

ALLOBJS	= dosearch.o search.o csearch.o \
	  auth.o doauth.o unauth.o ckput.o ckget.o ckdump.o ckpurge.o ckdel.o \
	  edit.o domodify.o newentry.o tutor.o dnedit.o \
	  lang.o utf8compare.o \
	  $(COMMONOBJS) $(SECGLUEOBJS)

INCLUDES= -I$(SDKHDIR) -I$(NSCP_DISTDIR)/include $(ICU_INCLUDE) -I$(ADMINUTIL_INCPATH)

DEFINES	+= $(DEFS) $(SSL) $(XP_FLAG)

CFLAGS	+= $(INCLUDES) $(DEFINES) $(ACFLAGS)
# Uncomment the following for debug output to /tmp/dsgw/<CGI> and <CGI>.out
# if /tmp/dsgw exists and is a directory.
#CFLAGS  += -DDSGW_DEBUG -g
# Uncomment the following line to build without SSL support
#CFLAGS += -DDSGW_NO_SSL

ifeq ($(ARCH), WINNT)
PROGBINS = $(addsuffix .exe, $(BINS))
CKUTILPROGBINS = $(addsuffix .exe, $(CKUTILBINS))
else
PROGBINS = $(BINS)
CKUTILPROGBINS = $(CKUTILBINS)
endif

ALLBINS= $(PROGBINS) $(CKUTILPROGBINS)

## make sure there's prog.exe and prog for NT. Weak, but ES 
## only works with prog, and AS needs both.
#ifeq ($(ARCH), WINNT)
#all:	prerequisites $(PROGBINS) $(NEED_SECGLUE_BINS) nt_dsgw_bins all-html all-config
#
#nt_dsgw_bins:
#	+$(DO_COPY_DSGW_BINS)
#
#COPYBINS = $(PROGS) $(NEED_SECGLUE)
#
#DO_COPY_DSGW_BINS = \
#	for dsgw_bin in $(COPYBINS); do \
#		mv $(RELDIR)/clients/dsgw/bin/$$dsgw_bin.exe $(RELDIR)/clients/dsgw/bin/$$dsgw_bin; \
#	done
#else
all:	prerequisites $(PROGBINS) $(NEED_SECGLUE_BINS) all-html all-config
#endif

prerequisites:	$(BINDIR) $(OBJDEST)
#	-@echo $(NEED_SECGLUE_BINS)
#	-@echo $(PROGBINS)

# if $(SECGLUEOBJ) isn't available, use $(ADMIN_SECGLUEOBJ) as a substitute:
$(SECGLUEOBJ): $(ADMIN_SECGLUEOBJ)
	cp $(ADMIN_SECGLUEOBJ) $(SECGLUEOBJ)

all-html:
	cd html; $(MAKE) $(MFLAGS) all
	cd admhtml; $(MAKE) $(MFLAGS) all
	cd userhtml; $(MAKE) $(MFLAGS) all
	cd pbhtml; $(MAKE) $(MFLAGS) all

$(OBJDEST):
	$(MKDIR) -p $@

all-config:
	cd config; $(MAKE) $(MFLAGS) all
	cd pbconfig; $(MAKE) $(MFLAGS) all

ckutils:	$(CKUTILPROGBINS)

$(LDAP_LIBLDBM_DEP):
	cd $(LDAP_SRC)/libraries; $(MAKE) $(MFLAGS) clientSDK

$(LDAP_SDK_LIBLCACHE_DLL_DEP): $(LDAP_LIBLDBM_DEP)

sort: $(BINDIR)/sort

.PHONY: sort

#
# The remainder are the CGI programs that make up the gateway itself.
# We ship all of these.
#
ifneq ($(ARCH), WINNT)
$(PROGBINS): $(BINDIR)/%: $(OBJDEST)/%.o $(COMMONOBJS) $(LIBS_DEP)
	$(DSGW_LINK) $(ALDFLAGS) -o $@ $< $(COMMONOBJS) $(LIBS) $(CCC_LINK)

$(NEED_SECGLUE_BINS): $(BINDIR)/%: $(OBJDEST)/%.o $(NOSSLCOMMONOBJS) $(NSECLIBS_DEP)
	$(DSGW_LINK) $(ALDFLAGS) -o $@ $< $(NOSSLCOMMONOBJS) \
	$(NSECLIBS) $(CCC_LINK)
else
$(PROGBINS): $(BINDIR)/%.exe: $(OBJDEST)/%.o $(COMMONOBJS)
	$(DSGW_LINK) $(ALDFLAGS) $< $(COMMONOBJS)  \
		$(LDAPLINK) $(SECURITYLINK) $(ICULINK) $(CCC_LINK)
# sometimes linking executables can produce unneeded .lib or .exp files
	-@$(RM) $(subst .exe,.lib,$@) $(subst .exe,.exp,$@)

$(NEED_SECGLUE_BINS): $(BINDIR)/%.exe: $(OBJDEST)/%.o $(NOSSLCOMMONOBJS) $(SECGLUEOBJS)
	$(DSGW_LINK) $(ALDFLAGS) $< $(NOSSLCOMMONOBJS) \
	$(LDAPLINK) $(SECGLUEOBJS) $(ICULINK) $(CCC_LINK)
# sometimes linking executables can produce unneeded .lib or .exp files
	-@$(RM) $(subst .exe,.lib,$@) $(subst .exe,.exp,$@)
endif

clean:	clean-html clean-config
	rm -rf $(BINDIR)
	rm -rf $(OBJDEST)

clean-html:
	cd html; $(MAKE) $(MFLAGS) clean
	cd pbhtml; $(MAKE) $(MFLAGS) clean

clean-config:
	cd config; $(MAKE) $(MFLAGS) clean
	cd pbconfig; $(MAKE) $(MFLAGS) clean

strip:
	$(STRIP) $(ALLBINS)

$(OBJDEST)/%.o: %.c
	$(CC) -c $(CFLAGS) $(MCC_INCLUDE) $< $(OFFLAG)$@

CFLAGS += -I../../include