summaryrefslogtreecommitdiffstats
path: root/ldap/servers/slapd/libmakefile
blob: 2064840fcf6344210b074c85f42326f622fa09c9 (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
#
# BEGIN COPYRIGHT BLOCK
# Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
# Copyright (C) 2005 Red Hat, Inc.
# All rights reserved.
# END COPYRIGHT BLOCK
#
#
# GNU Makefile for libslapd 
#

FLAG_LDAP_4SLAPD=true
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/obj
BINDIR = $(LIB_RELDIR)
LIBDIR = $(OBJDIR)/lib
ifndef INSTDIR
INSTDIR = /netscape/server4/
endif

include $(BUILD_ROOT)/nsdefs.mk
include $(BUILD_ROOT)/nsconfig.mk
include $(LDAP_SRC)/nsldap.mk
ifndef LDAP_USE_OLD_DB
include $(BUILD_ROOT)/ns_usedb.mk
_ldap_db_depend:=$(DB_LIB_DEP)
INCLUDES+=-I$(DB_INCLUDE)
endif
include $(LDAP_SRC)/nsdeps.mk

INCLUDES += -I. -I$(BUILD_ROOT)/lib
# uncomment the following to include support in slapd for hacky echo control
#CFLAGS += -DSLAPD_ECHO_CONTROL
CFLAGS+=$(SLCFLAGS)

LIBSLAPD_OBJS=plugin_role.o getfilelist.o libglobs.o log.o ch_malloc.o entry.o pblock.o \
	modutil.o schema.o attr.o value.o time.o dn.o \
	filter.o filtercmp.o filterentry.o operation.o schemaparse.o pw.o \
	backend.o defbackend.o ava.o charray.o regex.o \
	str2filter.o dynalib.o plugin.o plugin_syntax.o plugin_mr.o \
	slapi2nspr.o rwlock.o control.o plugin_internal_op.o \
	result.o pw_retry.o agtmmap.o referral.o snmp_collator.o util.o \
	dse.o errormap.o computed.o match.o fileio.o \
	generation.o localhost.o ssl.o factory.o auditlog.o \
	lenstr.o eventq.o uuid.o uniqueid.o uniqueidgen.o \
	csngen.o utf8compare.o ntuserpin.o entrywsi.o valueset.o \
	attrsyntax.o opshared.o add.o modify.o modrdn.o delete.o dl.o\
	plugin_acl.o counters.o subentry.o object.o objset.o apibroker.o \
	csn.o csnset.o slapd_plhash.o attrlist.o vattr.o bitset.o rdn.o \
	mapping_tree.o backend_manager.o task.o resourcelimit.o \
	bulk_import.o security_wrappers.o index_subsystem.o sasl_map.o

ifeq ($(ARCH), AIX)
ifeq ($(DEBUG), optimize)
TEMP_CFLAGS = $(subst -O,,$(CFLAGS))
$(OBJDEST)/vattr.o: vattr.c
	$(CC) -o $(OBJDEST)/vattr.o -c $(TEMP_CFLAGS) $(MCC_INCLUDE) vattr.c
endif
endif
ifeq ($(ARCH), WINNT)
#find out why this isn't needed on UNIX
DLL_LDFLAGS += $(NSPRLINK) /IMPLIB:$(LIBSLAPD)
DLL_LDFLAGS += -def:"libslapd.def"
LIBSLAPD_DEF = $(LDAP_SRC)/servers/slapd/libslapd.def
SUBSYSTEM=windows

LDAP_COMMON_EXTRALIBSLIST = libsi18n
LDAP_COMMON_EXTRALIBS = $(addsuffix .$(LIB_SUFFIX), \
	$(addprefix $(LDAP_LIBDIR)/, $(LDAP_COMMON_EXTRALIBSLIST)))
LDAP_COMMON_LINK += libbase.$(LIB_SUFFIX)

EXTRA_LIBS_DEP = $(SECURITY_DEP) $(NSPR_DEP) \
	$(LDAP_COMMON_LIBS_DEP) $(LDAPSDK_DEP) \
	$(LDAP_SDK_LIBSSLDAP_LIB_DEP) $(LIBLDAPU_DEP) $(_ldap_db_depend) \
	$(SVRCORE_DEP) \
	$(LDAP_COMMON_EXTRALIBS)

EXTRA_LIBS += $(LDAPLINK) $(LIBSVRCORE) $(LIBSECURITY) $(LIBNSPR) \
	$(LDAP_COMMON_LINK) \
	$(LIBLDAPU) \
	$(LDAP_COMMON_EXTRALIBS) 

# JCM - Warnings as Errors!
CFLAGS += /WX
else
LDFLAGS	= $(SSLLIBFLAG)
EXTRA_LIBS_DEP	= $(SECURITY_DEP) \
	$(NSPR_DEP) $(LDAPSDK_DEP) $(SVRCORE_DEP) \
	$(LDAP_LIBLDBM_DEP) $(LDAP_LIBAVL_DEP) $(LDAP_LIBLDIF_DEP) \
	$(_ldap_db_depend) $(SVRCORE_DEP)
EXTRA_LIBS = $(LDAP_LIBLITEKEY) -lavl -lldif \
	$(SVRCORELINK) $(LDAPLINK) \
	$(SECURITYLINK) $(NSPRLINK) \
	$(ALIBS) $(DYNALIBS) $(THREADSLIB)
endif
ifeq ($(ARCH), AIX)
LD=ld
EXTRA_LIBS = $(LDAPLINK) $(SVRCORELINK) $(SECURITYLINK) $(NSPRLINK) \
	$(LDAP_COMMON_LINK) \
	$(LIBLDAPU) \
	$(DYNALIBS) $(THREADSLIB) \
	$(DLL_EXTRA_LIBS) \
	$(LDAP_LIBLITEKEY)
endif

# for Solaris, our most common unix build platform, we check for undefined
# symbols at link time so we don't catch them at run time.  To do this, we
# set the -z defs flag.  We also have to add explicitly link with the C and
# C++ runtime libraries (e.g., -lc) because, even though ld and CC link
# with them implicitly, -z defs will throw errors if we do not link with
# them explicitly.
ifeq ($(ARCH), SOLARIS)
LINK_DLL += -z defs
# removed -lcx from the following line
EXTRA_LIBS += -lCstd -lCrun -lm -lw -lc
# with the Forte 6 and later compilers, we must use CC to link
LD=CC
endif

#ifeq ($(ARCH), OSF1)
#DLL_LDFLAGS=-shared -all -error_unresolved -taso -ySVRCORE_RegisterPinObj
#EXTRA_LIBS += -lc
#endif

OBJS = $(addprefix $(OBJDEST)/, $(LIBSLAPD_OBJS)) 
ERRORMAP.O = $(addprefix $(OBJDEST)/, errormap.o) 

all:	$(OBJDEST) $(LIBDIR) $(BINDIR) $(BUILD_DEP) $(LIBSLAPD_DLL) $(LIBSLAPD_RELDLLS)

static:	$(OBJDEST) $(LIBDIR) $(LIBSLAPD)

dummy:
	echo $(LINK_DLL)
	echo $(EXTRA_LIBS)

clientSDK:	static

$(LIBSLAPD_DLL): $(EXTRA_LIBS_DEP) $(OBJS) $(LIBSLAPD_DEF)
	$(LINK_DLL) $(EXTRA_LIBS)

veryclean: clean

clean:
	-$(RM) $(OBJS)
	-$(RM) $(LIBSLAPD_DLL)

# compilation dependencies:

$(ERRORMAP.O):	$(DIRVERDIR)/dberrstrs.h

$(DIRVERDIR)/dberrstrs.h:	$(DB_INCLUDE)/db.h
ifeq ($(ARCH), WINNT)
	$(PERL) mkDBErrStrs.pl -nt -i $(DB_INCLUDE) -o $(DIRVERDIR)
else
	$(PERL) mkDBErrStrs.pl -i $(DB_INCLUDE) -o $(DIRVERDIR)
endif

ifeq ($(ARCH), WINNT)
$(OBJS): $(OBJDEST)/%.o : %.c
endif

# Target to push the built binary to an installed server
LIBSLAPD_PUSH = $(addprefix $(INSTDIR)/, bin/slapd/server/libslapd.dll)
push: $(LIBSLAPD_PUSH)

$(LIBSLAPD_PUSH): $(LIBSLAPD_DLL)
	cp $(LIBSLAPD_DLL) $(LIBSLAPD_PUSH)