2003-11-25 21:58:56 -05:00
|
|
|
# Makefile.in for back-bdb
|
2000-09-18 15:02:03 -04:00
|
|
|
# $OpenLDAP$
|
2003-11-28 16:08:20 -05:00
|
|
|
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
##
|
2009-01-21 19:40:04 -05:00
|
|
|
## Copyright 1998-2009 The OpenLDAP Foundation.
|
2003-11-25 21:58:56 -05:00
|
|
|
## All rights reserved.
|
|
|
|
|
##
|
|
|
|
|
## Redistribution and use in source and binary forms, with or without
|
|
|
|
|
## modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
|
## Public License.
|
|
|
|
|
##
|
|
|
|
|
## A copy of this license is available in the file LICENSE in the
|
|
|
|
|
## top-level directory of the distribution or, alternatively, at
|
|
|
|
|
## <http://www.OpenLDAP.org/license.html>.
|
2000-09-18 15:02:03 -04:00
|
|
|
|
2000-09-25 17:10:21 -04:00
|
|
|
SRCS = init.c tools.c config.c \
|
2000-09-27 19:25:15 -04:00
|
|
|
add.c bind.c compare.c delete.c modify.c modrdn.c search.c \
|
2003-12-01 07:55:05 -05:00
|
|
|
extended.c referral.c operational.c \
|
2001-10-13 12:55:54 -04:00
|
|
|
attr.c index.c key.c dbcache.c filterindex.c \
|
2003-11-25 21:58:56 -05:00
|
|
|
dn2entry.c dn2id.c error.c id2entry.c idl.c \
|
2006-09-05 21:54:54 -04:00
|
|
|
nextid.c cache.c trans.c monitor.c
|
2003-11-25 21:58:56 -05:00
|
|
|
|
2000-09-25 17:10:21 -04:00
|
|
|
OBJS = init.lo tools.lo config.lo \
|
2000-09-27 19:25:15 -04:00
|
|
|
add.lo bind.lo compare.lo delete.lo modify.lo modrdn.lo search.lo \
|
2003-12-01 07:55:05 -05:00
|
|
|
extended.lo referral.lo operational.lo \
|
2001-10-13 12:55:54 -04:00
|
|
|
attr.lo index.lo key.lo dbcache.lo filterindex.lo \
|
2003-11-25 21:58:56 -05:00
|
|
|
dn2entry.lo dn2id.lo error.lo id2entry.lo idl.lo \
|
2006-09-05 21:54:54 -04:00
|
|
|
nextid.lo cache.lo trans.lo monitor.lo
|
2000-09-18 15:02:03 -04:00
|
|
|
|
|
|
|
|
LDAP_INCDIR= ../../../include
|
|
|
|
|
LDAP_LIBDIR= ../../../libraries
|
|
|
|
|
|
|
|
|
|
BUILD_OPT = "--enable-bdb"
|
|
|
|
|
BUILD_MOD = @BUILD_BDB@
|
|
|
|
|
|
2001-12-06 23:03:25 -05:00
|
|
|
mod_DEFS = -DSLAPD_IMPORT
|
|
|
|
|
MOD_DEFS = $(@BUILD_BDB@_DEFS)
|
2006-04-08 00:24:12 -04:00
|
|
|
MOD_LIBS = $(BDB_LIBS)
|
2000-09-18 15:02:03 -04:00
|
|
|
|
2002-06-20 21:34:53 -04:00
|
|
|
shared_LDAP_LIBS = $(LDAP_LIBLDAP_R_LA) $(LDAP_LIBLBER_LA)
|
2001-12-06 23:03:25 -05:00
|
|
|
NT_LINK_LIBS = -L.. -lslapd $(@BUILD_LIBS_DYNAMIC@_LDAP_LIBS)
|
2002-06-20 21:34:53 -04:00
|
|
|
UNIX_LINK_LIBS = $(@BUILD_LIBS_DYNAMIC@_LDAP_LIBS)
|
2000-09-18 15:02:03 -04:00
|
|
|
|
|
|
|
|
LIBBASE = back_bdb
|
|
|
|
|
|
|
|
|
|
XINCPATH = -I.. -I$(srcdir)/..
|
|
|
|
|
XDEFS = $(MODULES_CPPFLAGS)
|
|
|
|
|
|
|
|
|
|
all-local-lib: ../.backend
|
|
|
|
|
|
|
|
|
|
../.backend: lib$(LIBBASE).a
|
|
|
|
|
@touch $@
|
|
|
|
|
|