mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
9b4e3b2234
support for DCE slash-delimited, left-to-right DNs; support for a domain socket transport (enable with --enable-ldapi); and extensions to URL parsing to support the latter transport.
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# $OpenLDAP$
|
|
|
|
SRCS = idl.c add.c search.c cache.c dbcache.c dn2id.c entry.c id2entry.c \
|
|
index.c id2children.c nextid.c abandon.c compare.c group.c \
|
|
modify.c modrdn.c delete.c init.c config.c bind.c attr.c \
|
|
filterindex.c unbind.c close.c alias.c tools.c \
|
|
extended.c passwd.c sasl.c
|
|
OBJS = idl.lo add.lo search.lo cache.lo dbcache.lo dn2id.lo entry.lo id2entry.lo \
|
|
index.lo id2children.lo nextid.lo abandon.lo compare.lo group.lo \
|
|
modify.lo modrdn.lo delete.lo init.lo config.lo bind.lo attr.lo \
|
|
filterindex.lo unbind.lo close.lo alias.lo tools.lo \
|
|
extended.lo passwd.lo sasl.lo
|
|
|
|
LDAP_INCDIR= ../../../include
|
|
LDAP_LIBDIR= ../../../libraries
|
|
|
|
BUILD_OPT = "--enable-ldbm"
|
|
BUILD_MOD = @BUILD_LDBM@
|
|
LINKAGE = @BUILD_LDBM_DYNAMIC@
|
|
|
|
DYN_DEFS = -DLIBLBER_DECL=dllimport -DLIBLDAP_DECL=dllimport
|
|
|
|
# TODO
|
|
#NT_mod_DYN_MODDEFS =
|
|
#NT_mod_STAT_MODDEFS =
|
|
|
|
NT_yes_DYN_MODDEFS = $(DYN_DEFS)
|
|
NT_yes_STAT_MODDEFS =
|
|
|
|
MODDEFS = $(@PLAT@_@BUILD_LDBM@_@LIB_LINKAGE@_MODDEFS)
|
|
|
|
LIBBASE = back_ldbm
|
|
|
|
XINCPATH = -I.. -I$(srcdir)/..
|
|
XDEFS = $(MODULES_CPPFLAGS)
|
|
XLDFLAGS = $(MODULES_LDFLAGS)
|
|
|
|
all-local-lib: ../.backend
|
|
|
|
../.backend: lib$(LIBBASE).a
|
|
@touch $@
|
|
|