mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
e4f6d54877
New id2entry (id-less) format (ldbm/bdb2) Removed id2children (ldbm/bdb2) Added nextid database (ldbm) Broke ldbmtest Removed ldif2* tools (ldbm/bdb2) Added slap tools (slapadd, slapcat, slapindex)
28 lines
881 B
Makefile
28 lines
881 B
Makefile
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 kerberos.c close.c alias.c tools.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 kerberos.lo close.lo alias.lo tools.lo
|
|
|
|
LDAP_INCDIR= ../../../include
|
|
LDAP_LIBDIR= ../../../libraries
|
|
|
|
BUILD_OPT = "--enable-ldbm"
|
|
BUILD_MOD = @BUILD_LDBM@
|
|
LINKAGE = @BUILD_LDBM_DYNAMIC@
|
|
|
|
LIBBASE = back_ldbm
|
|
|
|
XINCPATH = -I.. -I$(srcdir)/..
|
|
XDEFS = $(MODULES_CPPFLAGS)
|
|
XLDFLAGS = $(MODULES_LDFLAGS)
|
|
|
|
all-local-lib: ../.backend
|
|
|
|
../.backend: lib$(LIBBASE).a
|
|
@touch $@
|
|
|