mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
32 lines
975 B
Makefile
32 lines
975 B
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 kerberos.c close.c alias.c startup.c \
|
|
timing.c porter.c txn.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 startup.lo \
|
|
timing.lo porter.lo txn.lo tools.lo
|
|
|
|
LDAP_INCDIR= ../../../include
|
|
LDAP_LIBDIR= ../../../libraries
|
|
|
|
BUILD_OPT = "--enable-bdb2"
|
|
BUILD_MOD = @BUILD_BDB2@
|
|
LINKAGE = @BUILD_BDB2_DYNAMIC@
|
|
|
|
LIBBASE = back_bdb2
|
|
|
|
XINCPATH = -I.. -I$(srcdir)/..
|
|
XDEFS = $(MODULES_CPPFLAGS)
|
|
XLDFLAGS = $(MODULES_LDFLAGS)
|
|
|
|
all-local-lib: ../.backend
|
|
|
|
../.backend: lib$(LIBBASE).a
|
|
@touch $@
|
|
|