summaryrefslogtreecommitdiffstats
path: root/ldap/servers/slapd/tools/Makefile
blob: 06d8968aaa2caf4d50c2127032b95de8e8523042 (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
#
# 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
# do so, delete this exception statement from your version. 
# 
# 
# Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
# Copyright (C) 2005 Red Hat, Inc.
# All rights reserved.
# END COPYRIGHT BLOCK
#
#
# gnu makefile for LDAP Server tools.
#

LDAP_SRC = ../../..
BUILD_ROOT = ../../../..

NOSTDCLEAN=true # don't let nsconfig.mk define target clean
NOSTDSTRIP=true # don't let nsconfig.mk define target strip
NSPR20=true	# probably should be defined somewhere else (not sure where)

OBJDEST = $(OBJDIR)/servers/tools/obj
BINDIR = $(LDAP_SERVER_RELDIR)

SLAPD_OBJDIR = $(LDAP_OBJDIR)

include $(BUILD_ROOT)/nsdefs.mk
include $(BUILD_ROOT)/nsconfig.mk
include $(LDAP_SRC)/nsldap.mk
ifndef LDAP_USE_OLD_DB
INCLUDES+=-I$(DB_INCLUDE)
else
CFLAGS+=-DLDAP_USE_DB185
endif

SLAPDHDIR = ../

ifeq ($(ARCH), OSF1)
PLATFORM_SPECIFIC_EXTRA_LIBRARY = -lcxx
else # OSF1
# oems might need to edit this for their platform
PLATFORM_SPECIFIC_EXTRA_LIBRARY =
endif # OSF1

INCLUDES += $(SSLINCLUDE)
DEFS += $(SSL)

OBJS1 += $(OBJDEST)/pwenc.o 

ifeq ($(USE_64), 1)
ifeq ($(ARCH), HPUX)
LDFLAGS += -lpthread +DA2.0W +DS2.0 +Z
endif
ifeq ($(ARCH), SOLARIS)
LDFLAGS += -xarch=v9 
endif
endif


INCLUDES += -I$(SLAPDHDIR) -I$(LDAP_ADMINCDIR)
INCLUDES += -I$(ACLINC)
INCLUDES +=  -I ../../plugins/rever
LDFLAGS	+= $(EXLDFLAGS) $(SSLLIBFLAG)

ifeq ($(ARCH), WINNT)
SUBSYSTEM=console
endif

DEPLIBS=

EXTRA_LIBS_DEP = $(LDAPSDK_DEP) \
	$(LDAP_LIBLDIF_DEP) \
	$(LDAP_SLIBLCACHE_DEP) $(DB_LIB_DEP) $(LIBSLAPD_DEP) \
	$(LDAP_COMMON_LIBS_DEP)

EXTRA_LIBS += $(LDAPLINK) \
	$(LDAP_SLIBLCACHE) $(DB_LIB) \
	$(PLATFORM_SPECIFIC_EXTRA_LIBRARY) $(LIBSLAPD) $(LDAP_LIBLITEKEY) \
	$(ALIBS) \
	$(SECURITYLINK) $(DBMLINK) \
	$(THREADSLIB) $(LDAP_COMMON_LIBS) $(NSPRLINK) $(SVRCORELINK)

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


KEYUPG_LIBS_DEP=
KEYUPG_LIBS=$(LDAP_LIBLITEKEY)

ifeq ($(ARCH), WINNT)
KEYUPG_LIBS_DEP=$(LDAP_LIBUTIL_DEP)
KEYUPG_LIBS += $(LDAP_LIBUTIL)
endif

ifdef HEAPAGENT
CFLAGS+=-DPURIFYING
LDAP_DONT_USE_SMARTHEAP=1
endif

# It looks like all of the latest versions of Unix that we ship on
# have a good enough heap implementations that they don't need
# SmartHeap.  We still need it on NT.
ifneq ($(ARCH), WINNT)
LDAP_DONT_USE_SMARTHEAP=1
endif

# Don't use smartheap for debug builds on NT
ifeq ($(ARCH), WINNT)
ifeq ($(DEBUG), full)
LDAP_DONT_USE_SMARTHEAP=1
endif
endif

ifndef LDAP_DONT_USE_SMARTHEAP
include $(BUILD_ROOT)/ns_usesh.mk
_smartheap_depend = $(SH_LIB_DEP)
else
CFLAGS+=-DLDAP_DONT_USE_SMARTHEAP
endif


TOOL_OBJS =  ldif.o keyupg.o pwenc.o mmldif.o migratecred.o eggencode.o dbscan.o
ALL_OBJS = $(addprefix $(OBJDEST)/, $(TOOL_OBJS))

LDIF = $(addsuffix $(EXE_SUFFIX), \
	$(addprefix $(BINDIR)/, ldif))
PWDHASH = $(addsuffix $(EXE_SUFFIX), \
	$(addprefix $(BINDIR)/, pwdhash))
MIGRATECRED = $(addsuffix $(EXE_SUFFIX), \
	$(addprefix $(BINDIR)/, migratecred))
KEYUPG = $(addsuffix $(EXE_SUFFIX), \
	$(addprefix $(BINDIR)/, keyupg))
MMLDIF = $(addsuffix $(EXE_SUFFIX), \
	$(addprefix $(BINDIR)/, mmldif))
EGGENCODE = $(addsuffix $(EXE_SUFFIX), \
	$(addprefix $(BINDIR)/, eggencode))
DBSCAN = $(addsuffix $(EXE_SUFFIX), \
	$(addprefix $(BINDIR)/, dbscan))

BINS=	$(LDIF) $(PWDHASH) $(KEYUPG) $(MMLDIF) $(MIGRATECRED) $(DBSCAN)
EXTRABINS=	$(EGGENCODE)

all:	$(OBJDEST) $(BINDIR) $(LDAP_ADMIN_BIN_RELDIR) $(BINS)

extras:	$(OBJDEST) $(BINDIR) $(EGGENCODE)

$(LDIF):	$(OBJDEST)/ldif.o $(LDAP_LIBLDIF_DEP)
	$(LINK_EXE) $< $(LDAP_LIBLDIF)

$(PWDHASH):	$(OBJS1) $(EXTRA_LIBS_DEP)
	$(LINK_EXE) $(OBJS1) $(EXTRA_LIBS) 

$(MIGRATECRED):	$(OBJDEST)/migratecred.o $(EXTRA_LIBS_DEP)
	$(LINK_EXE) $(OBJDEST)/migratecred.o $(EXTRA_LIBS) 

$(KEYUPG):      $(OBJDEST)/keyupg.o  $(KEYUPG_LIBS_DEP)
	$(LINK_EXE_NOLIBSOBJS) $<  $(KEYUPG_LIBS)

$(MMLDIF):	$(OBJDEST)/mmldif.o $(EXTRA_LIBS_DEP)
	$(LINK_EXE_NOLIBSOBJS) $(OBJDEST)/mmldif.o $(EXTRA_LIBS) 

$(EGGENCODE):	$(OBJDEST)/eggencode.o
	$(LINK_EXE_NOLIBSOBJS) $(OBJDEST)/eggencode.o

$(DBSCAN):	$(OBJDEST)/dbscan.o
	$(LINK_EXE) $<

$(OBJDEST):
	$(MKDIR) $(OBJDEST)

clean:
	-$(RM) $(ALL_OBJS)
	-$(RM) $(BINS) $(EXTRABINS)