# $OpenLDAP: pkg/ldap/build/top.mk,v 1.103.2.5 2008/02/11 23:26:38 kurt Exp $
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2008 The OpenLDAP Foundation.
## 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
##---------------------------------------------------------------------------
#
# Top-level Makefile template
#

PACKAGE= OpenLDAP
VERSION= 2.4.9
RELEASEDATE= 2008/05/07


SHELL = /bin/sh

top_builddir = ../../

srcdir = .
top_srcdir = ../..

prefix = /usr/local
exec_prefix = ${prefix}
ldap_subdir = /openldap

bindir = ${exec_prefix}/bin
datadir = ${prefix}/share$(ldap_subdir)
includedir = ${prefix}/include
infodir = ${prefix}/info
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localstatedir = ${prefix}/var
mandir = ${prefix}/man
moduledir = ${exec_prefix}/libexec$(ldap_subdir)
sbindir = ${exec_prefix}/sbin
sharedstatedir = ${prefix}/com
sysconfdir = ${prefix}/etc$(ldap_subdir)
schemadir = $(sysconfdir)/schema

PLAT = NT
EXEEXT = .exe
OBJEXT = o

BUILD_LIBS_DYNAMIC = static

SHTOOL = $(top_srcdir)/build/shtool

INSTALL = $(SHTOOL) install -c
INSTALL_PROGRAM = $(INSTALL)
INSTALL_DATA = $(INSTALL) -m 644
INSTALL_SCRIPT = $(INSTALL)

STRIP = -s

LINT = lint
5LINT = 5lint

MKDEP = $(top_srcdir)/build/mkdep $(MKDEPFLAG) \
	-d "$(srcdir)" -c "$(MKDEP_CC)" -m "$(MKDEP_CFLAGS)"
MKDEP_CC	= gcc
MKDEP_CFLAGS = -M

MKVERSION = $(top_srcdir)/build/mkversion -v "$(VERSION)"

LIBTOOL = $(SHELL) $(top_builddir)/libtool
LIBRELEASE = 2.4
LIBVERSION = 2:5:0
LTVERSION = -release $(LIBRELEASE) -version-info $(LIBVERSION)

# libtool --only flag for libraries: platform specific
NT_LTONLY_LIB = # --only-$(BUILD_LIBS_DYNAMIC)
LTONLY_LIB = $(NT_LTONLY_LIB)

# libtool --only flag for modules: depends on linkage of module
# The BUILD_MOD macro is defined in each backend Makefile.in file
LTONLY_yes = --tag=disable-shared
LTONLY_mod = --tag=disable-static
LTONLY_MOD = $(LTONLY_$(BUILD_MOD))

# platform-specific libtool flags
NT_LTFLAGS_LIB = -no-undefined -avoid-version -rpath $(libdir)
NT_LTFLAGS_MOD = -no-undefined -avoid-version -rpath $(moduledir)
UNIX_LTFLAGS_LIB = $(LTVERSION) -rpath $(libdir)
UNIX_LTFLAGS_MOD = $(LTVERSION) -rpath $(moduledir)

# libtool flags
LTFLAGS     = $(NT_LTFLAGS)
LTFLAGS_LIB = $(NT_LTFLAGS_LIB)
LTFLAGS_MOD = $(NT_LTFLAGS_MOD)

# LIB_DEFS defined in liblber and libldap Makefile.in files.
# MOD_DEFS defined in backend Makefile.in files.

# platform-specific LINK_LIBS defined in various Makefile.in files.
# LINK_LIBS referenced in library and module link commands.
LINK_LIBS = $(MOD_LIBS) $(NT_LINK_LIBS)

LTSTATIC = -static

LTLINK   = $(LIBTOOL) --mode=link \
	$(CC) $(LTSTATIC) $(LT_CFLAGS) $(LDFLAGS) $(LTFLAGS)

LTCOMPILE_LIB = $(LIBTOOL) $(LTONLY_LIB) --mode=compile \
	$(CC) $(LT_CFLAGS) $(LT_CPPFLAGS) $(LIB_DEFS) -c

LTLINK_LIB = $(LIBTOOL) $(LTONLY_LIB) --mode=link \
	$(CC) $(LT_CFLAGS) $(LDFLAGS) $(LTFLAGS_LIB)

LTCOMPILE_MOD = $(LIBTOOL) $(LTONLY_MOD) --mode=compile \
	$(CC) $(LT_CFLAGS) $(LT_CPPFLAGS) $(MOD_DEFS) -c

LTLINK_MOD = $(LIBTOOL) $(LTONLY_MOD) --mode=link \
	$(CC) $(LT_CFLAGS) $(LDFLAGS) $(LTFLAGS_MOD)

LTINSTALL = $(LIBTOOL) --mode=install $(INSTALL) 
LTFINISH = $(LIBTOOL) --mode=finish

# Misc UNIX commands used in build environment
AR = ar
BASENAME = basename
CAT = cat
CHMOD = chmod
DATE = date
ECHO = $(SHTOOL) echo
HOSTNAME = $(SHTOOL) echo -e "%h%d"
LN = $(SHTOOL) mkln
LN_H = $(LN)
LN_S = $(LN) -s
MAKEINFO = ${SHELL} /opt/openldap-2.4.9/build/missing --run makeinfo
MKDIR = $(SHTOOL) mkdir -p
MV = $(SHTOOL) move
PWD = pwd
RANLIB = ranlib
RM = rm -f
SED = sed
SUBST = $(SHTOOL) subst

# For manual pages
# MANCOMPRESS=@MANCOMPRESS@
# MANCOMPRESSSUFFIX=@MANCOMPRESSSUFFIX@
MANCOMPRESS=$(CAT)
MANCOMPRESSSUFFIX=

SOELIM=soelim

INCLUDEDIR= $(top_srcdir)/include
LDAP_INCPATH= -I$(LDAP_INCDIR) -I$(INCLUDEDIR)
LDAP_LIBDIR= $(top_builddir)/libraries

LUTIL_LIBS = 
LTHREAD_LIBS = 

BDB_LIBS =  -ldb-4.5

LDAP_LIBLBER_LA = $(LDAP_LIBDIR)/liblber/liblber.la
LDAP_LIBLDAP_LA = $(LDAP_LIBDIR)/libldap/libldap.la
LDAP_LIBLDAP_R_LA = $(LDAP_LIBDIR)/libldap_r/libldap_r.la

LDAP_LIBREWRITE_A = $(LDAP_LIBDIR)/librewrite/librewrite.a
LDAP_LIBLUNICODE_A = $(LDAP_LIBDIR)/liblunicode/liblunicode.a
LDAP_LIBLUTIL_A = $(LDAP_LIBDIR)/liblutil/liblutil.a

LDAP_L = $(LDAP_LIBLUTIL_A) \
	$(LDAP_LIBLDAP_LA) $(LDAP_LIBLBER_LA)
SLAPD_L = $(LDAP_LIBLUNICODE_A) $(LDAP_LIBREWRITE_A) \
	$(LDAP_LIBLUTIL_A) $(LDAP_LIBLDAP_R_LA) $(LDAP_LIBLBER_LA)

WRAP_LIBS = 
# AutoConfig generated 
AC_CC	= gcc
AC_CFLAGS = -g -O2
AC_DEFS = -I/opt/openssl-0.9.8g/outinc # -DHAVE_CONFIG_H
AC_LDFLAGS = -L/opt/openssl-0.9.8g/out
AC_LIBS = -lregex  -lws2_32

KRB4_LIBS = 
KRB5_LIBS = 
KRB_LIBS =  
SASL_LIBS = 
TLS_LIBS = -lssl -lcrypto
AUTH_LIBS = 
SECURITY_LIBS = $(SASL_LIBS) $(KRB_LIBS) $(TLS_LIBS) $(AUTH_LIBS)
ICU_LIBS = 

MODULES_CPPFLAGS = 
MODULES_LDFLAGS = 
MODULES_LIBS = 
SLAPD_PERL_LDFLAGS = 

SLAPD_SQL_LDFLAGS = 
SLAPD_SQL_INCLUDES = 
SLAPD_SQL_LIBS = 

SLAPD_LIBS =  -lrpcrt4 $(BDB_LIBS)      $(ICU_LIBS)

# Our Defaults
CC = $(AC_CC)
DEFS = $(LDAP_INCPATH) $(XINCPATH) $(XDEFS) $(AC_DEFS) $(DEFINES)
CFLAGS = $(AC_CFLAGS) $(DEFS)
LDFLAGS = $(LDAP_LIBPATH) $(AC_LDFLAGS) $(XLDFLAGS)
LIBS = $(XLIBS) $(XXLIBS) $(AC_LIBS) $(XXXLIBS)

LT_CFLAGS = $(AC_CFLAGS)
LT_CPPFLAGS = $(DEFS)

all:		all-common all-local FORCE
install:	install-common install-local FORCE
clean:		clean-common clean-local FORCE
veryclean:	veryclean-common veryclean-local FORCE
depend:		depend-common depend-local FORCE

# empty common rules
all-common:
install-common:
clean-common:
veryclean-common:	clean-common FORCE
depend-common:
lint-common:
lint5-common:

# empty local rules
all-local:
install-local:
clean-local:
veryclean-local:	clean-local FORCE
depend-local:
lint-local:
lint5-local:

veryclean: FORCE
	$(RM) Makefile
	$(RM) -r .libs

Makefile: Makefile.in $(top_srcdir)/build/top.mk

pathtest:
	$(SHTOOL) --version

# empty rule for forcing rules
FORCE:

##---------------------------------------------------------------------------

# Makefile.in for LDAP -lldap
# $OpenLDAP: pkg/ldap/libraries/libldap_r/Makefile.in,v 1.79.2.5 2008/02/11 23:26:41 kurt Exp $
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2008 The OpenLDAP Foundation.
## 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>.

LIBRARY = libldap_r.la

PROGRAMS = apitest ltest

XXDIR = $(srcdir)/../libldap
XXSRCS    = apitest.c test.c \
	bind.c open.c result.c error.c compare.c search.c \
	controls.c messages.c references.c extended.c cyrus.c \
	modify.c add.c modrdn.c delete.c abandon.c \
	sasl.c sbind.c unbind.c cancel.c \
	filter.c free.c sort.c passwd.c whoami.c \
	getdn.c getentry.c getattr.c getvalues.c addentry.c \
	request.c os-ip.c url.c pagectrl.c sortctrl.c vlvctrl.c \
	init.c options.c print.c string.c util-int.c schema.c \
	charray.c tls.c os-local.c dnssrv.c utf-8.c utf-8-conv.c \
	turn.c ppolicy.c dds.c txn.c ldap_sync.c stctrl.c
SRCS	= threads.c rdwr.c rmutex.c tpool.c rq.c \
	thr_posix.c thr_cthreads.c thr_thr.c thr_lwp.c thr_nt.c \
	thr_pth.c thr_stub.c thr_debug.c
OBJS	= threads.lo rdwr.lo rmutex.lo tpool.lo  rq.lo \
	thr_posix.lo thr_cthreads.lo thr_thr.lo thr_lwp.lo thr_nt.lo \
	thr_pth.lo thr_stub.lo thr_debug.lo \
	bind.lo open.lo result.lo error.lo compare.lo search.lo \
	controls.lo messages.lo references.lo extended.lo cyrus.lo \
	modify.lo add.lo modrdn.lo delete.lo abandon.lo \
	sasl.lo sbind.lo unbind.lo cancel.lo \
	filter.lo free.lo sort.lo passwd.lo whoami.lo \
	getdn.lo getentry.lo getattr.lo getvalues.lo addentry.lo \
	request.lo os-ip.lo url.lo pagectrl.lo sortctrl.lo vlvctrl.lo \
	init.lo options.lo print.lo string.lo util-int.lo schema.lo \
	charray.lo tls.lo os-local.lo dnssrv.lo utf-8.lo utf-8-conv.lo \
	turn.lo ppolicy.lo dds.lo txn.lo ldap_sync.lo stctrl.lo

LDAP_INCDIR= ../../include       
LDAP_LIBDIR= ../../libraries

LIB_DEFS = -DLDAP_LIBRARY

XDEFS = -DLDAP_R_COMPILE -I$(XXDIR)
XLIBS = $(LIBRARY) $(LDAP_LIBLBER_LA) $(LDAP_LIBLUTIL_A)
XXLIBS = $(SECURITY_LIBS) $(LUTIL_LIBS)
XXXLIBS = $(LTHREAD_LIBS)
NT_LINK_LIBS = $(LDAP_LIBLBER_LA) $(AC_LIBS) $(SECURITY_LIBS)
UNIX_LINK_LIBS = $(LDAP_LIBLBER_LA) $(AC_LIBS) $(SECURITY_LIBS) $(LTHREAD_LIBS)

.links : Makefile
	@for i in $(XXSRCS); do \
		$(RM) $$i ; \
		$(LN_S) $(XXDIR)/$$i . ; \
	done
	touch .links

$(XXSRCS) : .links

clean-local: FORCE
	@$(RM) .links

depend-common: .links

apitest:	$(XLIBS) apitest.o
	$(LTLINK) -o $@ apitest.o $(LIBS)
ltest:	$(XLIBS) test.o
	$(LTLINK) -o $@ test.o $(LIBS)

install-local: $(CFFILES) FORCE
	-$(MKDIR) $(DESTDIR)$(libdir)
	$(LTINSTALL) $(INSTALLFLAGS) -m 644 $(LIBRARY) $(DESTDIR)$(libdir)
	$(LTFINISH) $(DESTDIR)$(libdir)

# $OpenLDAP: pkg/ldap/build/lib.mk,v 1.23.2.3 2008/02/11 23:26:37 kurt Exp $
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2008 The OpenLDAP Foundation.
## 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>.
##---------------------------------------------------------------------------
#
# Makefile Template for Libraries
#

all-common: $(LIBRARY) $(PROGRAMS)

version.c: Makefile
	$(RM) $@
	$(MKVERSION) $(LIBRARY) > $@

version.o version.lo: version.c $(OBJS)

install-common: FORCE

lint: lint-local FORCE
	$(LINT) $(DEFS) $(DEFINES) $(SRCS)

lint5: lint5-local FORCE
	$(5LINT) $(DEFS) $(DEFINES) $(SRCS)

#
# In the mingw/cygwin environment, the so and dll files must be
# deleted separately, instead of using the {.so*,*.dll} construct
# that was previously used. It just didn't work.
#
clean-common: 	FORCE
	$(RM) $(LIBRARY) ../$(LIBRARY) $(XLIBRARY) \
		$(PROGRAMS) $(XPROGRAMS) $(XSRCS) $(XXSRCS) \
		*.o *.lo a.out *.exe core version.c .libs/* \
		../`$(BASENAME) $(LIBRARY) .la`.so* \
		../`$(BASENAME) $(LIBRARY) .la`*.dll

depend-common: FORCE
	$(MKDEP) $(DEFS) $(DEFINES) $(SRCS) $(XXSRCS)

lint-local: FORCE
lint5-local: FORCE

Makefile: $(top_srcdir)/build/lib.mk

# $OpenLDAP: pkg/ldap/build/lib-shared.mk,v 1.22.2.3 2008/02/11 23:26:37 kurt Exp $
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2008 The OpenLDAP Foundation.
## 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>.
##---------------------------------------------------------------------------
#
# Makefile Template for Shared Libraries
#

MKDEPFLAG = -l

.SUFFIXES: .c .o .lo

.c.lo:
	$(LTCOMPILE_LIB) $<

$(LIBRARY): version.lo
	$(LTLINK_LIB) -o $@ $(OBJS) version.lo $(LINK_LIBS)

Makefile: $(top_srcdir)/build/lib-shared.mk

# DO NOT DELETE THIS LINE -- mkdep uses it.
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.


#
# files: -I../../include -I../../include -DLDAP_R_COMPILE -I./../libldap -I/opt/openssl-0.9.8g/outinc threads.c rdwr.c rmutex.c tpool.c rq.c thr_posix.c thr_cthreads.c thr_thr.c thr_lwp.c thr_nt.c thr_pth.c thr_stub.c thr_debug.c apitest.c test.c bind.c open.c result.c error.c compare.c search.c controls.c messages.c references.c extended.c cyrus.c modify.c add.c modrdn.c delete.c abandon.c sasl.c sbind.c unbind.c cancel.c filter.c free.c sort.c passwd.c whoami.c getdn.c getentry.c getattr.c getvalues.c addentry.c request.c os-ip.c url.c pagectrl.c sortctrl.c vlvctrl.c init.c options.c print.c string.c util-int.c schema.c charray.c tls.c os-local.c dnssrv.c utf-8.c utf-8-conv.c turn.c ppolicy.c dds.c txn.c ldap_sync.c stctrl.c
# command: gcc -M -I.  -I../../include -I../../include -DLDAP_R_COMPILE -I./../libldap -I/opt/openssl-0.9.8g/outinc threads.c rdwr.c rmutex.c tpool.c rq.c thr_posix.c thr_cthreads.c thr_thr.c thr_lwp.c thr_nt.c thr_pth.c thr_stub.c thr_debug.c apitest.c test.c bind.c open.c result.c error.c compare.c search.c controls.c messages.c references.c extended.c cyrus.c modify.c add.c modrdn.c delete.c abandon.c sasl.c sbind.c unbind.c cancel.c filter.c free.c sort.c passwd.c whoami.c getdn.c getentry.c getattr.c getvalues.c addentry.c request.c os-ip.c url.c pagectrl.c sortctrl.c vlvctrl.c init.c options.c print.c string.c util-int.c schema.c charray.c tls.c os-local.c dnssrv.c utf-8.c utf-8-conv.c turn.c ppolicy.c dds.c txn.c ldap_sync.c stctrl.c
#

threads.lo: threads.c
threads.lo: ../../include/portable.h
threads.lo: ../../include/ac/fdset.h
threads.lo: ../../include/ldap_cdefs.h
threads.lo: ../../include/ldap_features.h
threads.lo: ../../include/ac/assert.h
threads.lo: ../../include/ac/localize.h
threads.lo: ../../include/ac/stdarg.h
threads.lo: ../../include/ac/stdlib.h
threads.lo: ../../include/ac/string.h
threads.lo: ../../include/ac/unistd.h
threads.lo: ../../include/lutil_lockf.h
threads.lo: ../../include/ldap_pvt_thread.h
threads.lo: ../../include/ldap_int_thread.h
threads.lo: ldap_thr_debug.h
rdwr.lo: rdwr.c
rdwr.lo: ../../include/portable.h
rdwr.lo: ../../include/ac/fdset.h
rdwr.lo: ../../include/ldap_cdefs.h
rdwr.lo: ../../include/ldap_features.h
rdwr.lo: ../../include/ac/assert.h
rdwr.lo: ../../include/ac/localize.h
rdwr.lo: ../../include/ac/stdlib.h
rdwr.lo: ../../include/ac/errno.h
rdwr.lo: ../../include/ac/string.h
rdwr.lo: ../../include/ac/time.h
rdwr.lo: ../libldap/ldap-int.h
rdwr.lo: ../libldap/../liblber/lber-int.h
rdwr.lo: ../../include/lber.h
rdwr.lo: ../../include/lber_types.h
rdwr.lo: ../../include/ldap_cdefs.h
rdwr.lo: ../../include/ldap_log.h
rdwr.lo: ../../include/lber_pvt.h
rdwr.lo: ../../include/lber.h
rdwr.lo: ../../include/ldap_queue.h
rdwr.lo: ../../include/ldap_pvt_thread.h
rdwr.lo: ../../include/ldap_int_thread.h
rdwr.lo: ../../include/ldap_log.h
rdwr.lo: ../../include/ldap.h
rdwr.lo: ../../include/ldap_features.h
rdwr.lo: ../../include/ldap_pvt.h
rdwr.lo: ../../include/ldap_pvt_uc.h
rdwr.lo: ../../include/ac/bytes.h
rdwr.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
rdwr.lo: ldap_thr_debug.h
rmutex.lo: rmutex.c
rmutex.lo: ../../include/portable.h
rmutex.lo: ../../include/ac/fdset.h
rmutex.lo: ../../include/ldap_cdefs.h
rmutex.lo: ../../include/ldap_features.h
rmutex.lo: ../../include/ac/assert.h
rmutex.lo: ../../include/ac/localize.h
rmutex.lo: ../../include/ac/stdlib.h
rmutex.lo: ../../include/ac/errno.h
rmutex.lo: ../../include/ac/string.h
rmutex.lo: ../../include/ac/time.h
rmutex.lo: ../libldap/ldap-int.h
rmutex.lo: ../libldap/../liblber/lber-int.h
rmutex.lo: ../../include/lber.h
rmutex.lo: ../../include/lber_types.h
rmutex.lo: ../../include/ldap_cdefs.h
rmutex.lo: ../../include/ldap_log.h
rmutex.lo: ../../include/lber_pvt.h
rmutex.lo: ../../include/lber.h
rmutex.lo: ../../include/ldap_queue.h
rmutex.lo: ../../include/ldap_pvt_thread.h
rmutex.lo: ../../include/ldap_int_thread.h
rmutex.lo: ../../include/ldap_log.h
rmutex.lo: ../../include/ldap.h
rmutex.lo: ../../include/ldap_features.h
rmutex.lo: ../../include/ldap_pvt.h
rmutex.lo: ../../include/ldap_pvt_uc.h
rmutex.lo: ../../include/ac/bytes.h
rmutex.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
tpool.lo: tpool.c
tpool.lo: ../../include/portable.h
tpool.lo: ../../include/ac/fdset.h
tpool.lo: ../../include/ldap_cdefs.h
tpool.lo: ../../include/ldap_features.h
tpool.lo: ../../include/ac/assert.h
tpool.lo: ../../include/ac/localize.h
tpool.lo: ../../include/ac/signal.h
tpool.lo: ../../include/ac/stdarg.h
tpool.lo: ../../include/ac/stdlib.h
tpool.lo: ../../include/ac/string.h
tpool.lo: ../../include/ac/time.h
tpool.lo: ../../include/ac/errno.h
tpool.lo: ../libldap/ldap-int.h
tpool.lo: ../libldap/../liblber/lber-int.h
tpool.lo: ../../include/lber.h
tpool.lo: ../../include/lber_types.h
tpool.lo: ../../include/ldap_cdefs.h
tpool.lo: ../../include/ldap_log.h
tpool.lo: ../../include/lber_pvt.h
tpool.lo: ../../include/lber.h
tpool.lo: ../../include/ldap_queue.h
tpool.lo: ../../include/ldap_pvt_thread.h
tpool.lo: ../../include/ldap_int_thread.h
tpool.lo: ../../include/ldap_log.h
tpool.lo: ../../include/ldap.h
tpool.lo: ../../include/ldap_features.h
tpool.lo: ../../include/ldap_pvt.h
tpool.lo: ../../include/ldap_pvt_uc.h
tpool.lo: ../../include/ac/bytes.h
tpool.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
tpool.lo: ../../include/ldap_queue.h
tpool.lo: ldap_thr_debug.h
rq.lo: rq.c
rq.lo: ../../include/portable.h
rq.lo: ../../include/ac/fdset.h
rq.lo: ../../include/ldap_cdefs.h
rq.lo: ../../include/ldap_features.h
rq.lo: ../../include/ac/assert.h
rq.lo: ../../include/ac/localize.h
rq.lo: ../../include/ac/stdarg.h
rq.lo: ../../include/ac/stdlib.h
rq.lo: ../../include/ac/errno.h
rq.lo: ../../include/ac/socket.h
rq.lo: ../../include/ac/string.h
rq.lo: ../../include/ac/time.h
rq.lo: ../libldap/ldap-int.h
rq.lo: ../libldap/../liblber/lber-int.h
rq.lo: ../../include/lber.h
rq.lo: ../../include/lber_types.h
rq.lo: ../../include/ldap_cdefs.h
rq.lo: ../../include/ldap_log.h
rq.lo: ../../include/lber_pvt.h
rq.lo: ../../include/lber.h
rq.lo: ../../include/ldap_queue.h
rq.lo: ../../include/ldap_pvt_thread.h
rq.lo: ../../include/ldap_int_thread.h
rq.lo: ../../include/ldap_log.h
rq.lo: ../../include/ldap.h
rq.lo: ../../include/ldap_features.h
rq.lo: ../../include/ldap_pvt.h
rq.lo: ../../include/ldap_pvt_uc.h
rq.lo: ../../include/ac/bytes.h
rq.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
rq.lo: ../../include/ldap_queue.h
rq.lo: ../../include/ldap_rq.h
thr_posix.lo: thr_posix.c
thr_posix.lo: ../../include/portable.h
thr_posix.lo: ../../include/ac/fdset.h
thr_posix.lo: ../../include/ldap_cdefs.h
thr_posix.lo: ../../include/ldap_features.h
thr_posix.lo: ../../include/ac/assert.h
thr_posix.lo: ../../include/ac/localize.h
thr_cthreads.lo: thr_cthreads.c
thr_cthreads.lo: ../../include/portable.h
thr_cthreads.lo: ../../include/ac/fdset.h
thr_cthreads.lo: ../../include/ldap_cdefs.h
thr_cthreads.lo: ../../include/ldap_features.h
thr_cthreads.lo: ../../include/ac/assert.h
thr_cthreads.lo: ../../include/ac/localize.h
thr_thr.lo: thr_thr.c
thr_thr.lo: ../../include/portable.h
thr_thr.lo: ../../include/ac/fdset.h
thr_thr.lo: ../../include/ldap_cdefs.h
thr_thr.lo: ../../include/ldap_features.h
thr_thr.lo: ../../include/ac/assert.h
thr_thr.lo: ../../include/ac/localize.h
thr_lwp.lo: thr_lwp.c
thr_lwp.lo: ../../include/portable.h
thr_lwp.lo: ../../include/ac/fdset.h
thr_lwp.lo: ../../include/ldap_cdefs.h
thr_lwp.lo: ../../include/ldap_features.h
thr_lwp.lo: ../../include/ac/assert.h
thr_lwp.lo: ../../include/ac/localize.h
thr_nt.lo: thr_nt.c
thr_nt.lo: ../../include/portable.h
thr_nt.lo: ../../include/ac/fdset.h
thr_nt.lo: ../../include/ldap_cdefs.h
thr_nt.lo: ../../include/ldap_features.h
thr_nt.lo: ../../include/ac/assert.h
thr_nt.lo: ../../include/ac/localize.h
thr_nt.lo: ../../include/ldap_pvt_thread.h
thr_nt.lo: ../../include/ldap_int_thread.h
thr_nt.lo: ldap_thr_debug.h
thr_pth.lo: thr_pth.c
thr_pth.lo: ../../include/portable.h
thr_pth.lo: ../../include/ac/fdset.h
thr_pth.lo: ../../include/ldap_cdefs.h
thr_pth.lo: ../../include/ldap_features.h
thr_pth.lo: ../../include/ac/assert.h
thr_pth.lo: ../../include/ac/localize.h
thr_stub.lo: thr_stub.c
thr_stub.lo: ../../include/portable.h
thr_stub.lo: ../../include/ac/fdset.h
thr_stub.lo: ../../include/ldap_cdefs.h
thr_stub.lo: ../../include/ldap_features.h
thr_stub.lo: ../../include/ac/assert.h
thr_stub.lo: ../../include/ac/localize.h
thr_debug.lo: thr_debug.c
thr_debug.lo: ../../include/portable.h
thr_debug.lo: ../../include/ac/fdset.h
thr_debug.lo: ../../include/ldap_cdefs.h
thr_debug.lo: ../../include/ldap_features.h
thr_debug.lo: ../../include/ac/assert.h
thr_debug.lo: ../../include/ac/localize.h
apitest.lo: apitest.c
apitest.lo: ../../include/portable.h
apitest.lo: ../../include/ac/fdset.h
apitest.lo: ../../include/ldap_cdefs.h
apitest.lo: ../../include/ldap_features.h
apitest.lo: ../../include/ac/assert.h
apitest.lo: ../../include/ac/localize.h
apitest.lo: ../../include/ac/stdlib.h
apitest.lo: ../../include/ldap.h
apitest.lo: ../../include/lber.h
apitest.lo: ../../include/lber_types.h
apitest.lo: ../../include/ldap_cdefs.h
apitest.lo: ../../include/ldap_features.h
test.lo: test.c
test.lo: ../../include/portable.h
test.lo: ../../include/ac/fdset.h
test.lo: ../../include/ldap_cdefs.h
test.lo: ../../include/ldap_features.h
test.lo: ../../include/ac/assert.h
test.lo: ../../include/ac/localize.h
test.lo: ../../include/ac/stdlib.h
test.lo: ../../include/ac/ctype.h
test.lo: ../../include/ac/socket.h
test.lo: ../../include/ac/string.h
test.lo: ../../include/ac/time.h
test.lo: ../../include/ac/unistd.h
test.lo: ../../include/lutil_lockf.h
test.lo: ../libldap/ldap-int.h
test.lo: ../libldap/../liblber/lber-int.h
test.lo: ../../include/lber.h
test.lo: ../../include/lber_types.h
test.lo: ../../include/ldap_cdefs.h
test.lo: ../../include/ldap_log.h
test.lo: ../../include/lber_pvt.h
test.lo: ../../include/lber.h
test.lo: ../../include/ldap_queue.h
test.lo: ../../include/ldap_pvt_thread.h
test.lo: ../../include/ldap_int_thread.h
test.lo: ../../include/ldap_log.h
test.lo: ../../include/ldap.h
test.lo: ../../include/ldap_features.h
test.lo: ../../include/ldap_pvt.h
test.lo: ../../include/ldap_pvt_uc.h
test.lo: ../../include/ac/bytes.h
test.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
bind.lo: bind.c
bind.lo: ../../include/portable.h
bind.lo: ../../include/ac/fdset.h
bind.lo: ../../include/ldap_cdefs.h
bind.lo: ../../include/ldap_features.h
bind.lo: ../../include/ac/assert.h
bind.lo: ../../include/ac/localize.h
bind.lo: ../../include/ac/stdlib.h
bind.lo: ../../include/ac/socket.h
bind.lo: ../../include/ac/string.h
bind.lo: ../../include/ac/time.h
bind.lo: ../libldap/ldap-int.h
bind.lo: ../libldap/../liblber/lber-int.h
bind.lo: ../../include/lber.h
bind.lo: ../../include/lber_types.h
bind.lo: ../../include/ldap_cdefs.h
bind.lo: ../../include/ldap_log.h
bind.lo: ../../include/lber_pvt.h
bind.lo: ../../include/lber.h
bind.lo: ../../include/ldap_queue.h
bind.lo: ../../include/ldap_pvt_thread.h
bind.lo: ../../include/ldap_int_thread.h
bind.lo: ../../include/ldap_log.h
bind.lo: ../../include/ldap.h
bind.lo: ../../include/ldap_features.h
bind.lo: ../../include/ldap_pvt.h
bind.lo: ../../include/ldap_pvt_uc.h
bind.lo: ../../include/ac/bytes.h
bind.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
bind.lo: ../../include/ldap_log.h
open.lo: open.c
open.lo: ../../include/portable.h
open.lo: ../../include/ac/fdset.h
open.lo: ../../include/ldap_cdefs.h
open.lo: ../../include/ldap_features.h
open.lo: ../../include/ac/assert.h
open.lo: ../../include/ac/localize.h
open.lo: ../../include/ac/stdlib.h
open.lo: ../../include/ac/param.h
open.lo: ../../include/ac/socket.h
open.lo: ../../include/ac/string.h
open.lo: ../../include/ac/time.h
open.lo: ../../include/ac/unistd.h
open.lo: ../../include/lutil_lockf.h
open.lo: ../libldap/ldap-int.h
open.lo: ../libldap/../liblber/lber-int.h
open.lo: ../../include/lber.h
open.lo: ../../include/lber_types.h
open.lo: ../../include/ldap_cdefs.h
open.lo: ../../include/ldap_log.h
open.lo: ../../include/lber_pvt.h
open.lo: ../../include/lber.h
open.lo: ../../include/ldap_queue.h
open.lo: ../../include/ldap_pvt_thread.h
open.lo: ../../include/ldap_int_thread.h
open.lo: ../../include/ldap_log.h
open.lo: ../../include/ldap.h
open.lo: ../../include/ldap_features.h
open.lo: ../../include/ldap_pvt.h
open.lo: ../../include/ldap_pvt_uc.h
open.lo: ../../include/ac/bytes.h
open.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
open.lo: ../../include/ldap_log.h
result.lo: result.c
result.lo: ../../include/portable.h
result.lo: ../../include/ac/fdset.h
result.lo: ../../include/ldap_cdefs.h
result.lo: ../../include/ldap_features.h
result.lo: ../../include/ac/assert.h
result.lo: ../../include/ac/localize.h
result.lo: ../../include/ac/stdlib.h
result.lo: ../../include/ac/errno.h
result.lo: ../../include/ac/socket.h
result.lo: ../../include/ac/string.h
result.lo: ../../include/ac/time.h
result.lo: ../../include/ac/unistd.h
result.lo: ../../include/lutil_lockf.h
result.lo: ../libldap/ldap-int.h
result.lo: ../libldap/../liblber/lber-int.h
result.lo: ../../include/lber.h
result.lo: ../../include/lber_types.h
result.lo: ../../include/ldap_cdefs.h
result.lo: ../../include/ldap_log.h
result.lo: ../../include/lber_pvt.h
result.lo: ../../include/lber.h
result.lo: ../../include/ldap_queue.h
result.lo: ../../include/ldap_pvt_thread.h
result.lo: ../../include/ldap_int_thread.h
result.lo: ../../include/ldap_log.h
result.lo: ../../include/ldap.h
result.lo: ../../include/ldap_features.h
result.lo: ../../include/ldap_pvt.h
result.lo: ../../include/ldap_pvt_uc.h
result.lo: ../../include/ac/bytes.h
result.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
result.lo: ../../include/ldap_log.h
result.lo: ../../include/lutil.h
error.lo: error.c
error.lo: ../../include/portable.h
error.lo: ../../include/ac/fdset.h
error.lo: ../../include/ldap_cdefs.h
error.lo: ../../include/ldap_features.h
error.lo: ../../include/ac/assert.h
error.lo: ../../include/ac/localize.h
error.lo: ../../include/ac/stdlib.h
error.lo: ../../include/ac/socket.h
error.lo: ../../include/ac/string.h
error.lo: ../../include/ac/time.h
error.lo: ../libldap/ldap-int.h
error.lo: ../libldap/../liblber/lber-int.h
error.lo: ../../include/lber.h
error.lo: ../../include/lber_types.h
error.lo: ../../include/ldap_cdefs.h
error.lo: ../../include/ldap_log.h
error.lo: ../../include/lber_pvt.h
error.lo: ../../include/lber.h
error.lo: ../../include/ldap_queue.h
error.lo: ../../include/ldap_pvt_thread.h
error.lo: ../../include/ldap_int_thread.h
error.lo: ../../include/ldap_log.h
error.lo: ../../include/ldap.h
error.lo: ../../include/ldap_features.h
error.lo: ../../include/ldap_pvt.h
error.lo: ../../include/ldap_pvt_uc.h
error.lo: ../../include/ac/bytes.h
error.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
compare.lo: compare.c
compare.lo: ../../include/portable.h
compare.lo: ../../include/ac/fdset.h
compare.lo: ../../include/ldap_cdefs.h
compare.lo: ../../include/ldap_features.h
compare.lo: ../../include/ac/assert.h
compare.lo: ../../include/ac/localize.h
compare.lo: ../../include/ac/socket.h
compare.lo: ../../include/ac/string.h
compare.lo: ../../include/ac/time.h
compare.lo: ../libldap/ldap-int.h
compare.lo: ../libldap/../liblber/lber-int.h
compare.lo: ../../include/lber.h
compare.lo: ../../include/lber_types.h
compare.lo: ../../include/ldap_cdefs.h
compare.lo: ../../include/ldap_log.h
compare.lo: ../../include/lber_pvt.h
compare.lo: ../../include/lber.h
compare.lo: ../../include/ldap_queue.h
compare.lo: ../../include/ldap_pvt_thread.h
compare.lo: ../../include/ldap_int_thread.h
compare.lo: ../../include/ldap_log.h
compare.lo: ../../include/ldap.h
compare.lo: ../../include/ldap_features.h
compare.lo: ../../include/ldap_pvt.h
compare.lo: ../../include/ldap_pvt_uc.h
compare.lo: ../../include/ac/bytes.h
compare.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
compare.lo: ../../include/ldap_log.h
search.lo: search.c
search.lo: ../../include/portable.h
search.lo: ../../include/ac/fdset.h
search.lo: ../../include/ldap_cdefs.h
search.lo: ../../include/ldap_features.h
search.lo: ../../include/ac/assert.h
search.lo: ../../include/ac/localize.h
search.lo: ../../include/ac/stdlib.h
search.lo: ../../include/ac/socket.h
search.lo: ../../include/ac/string.h
search.lo: ../../include/ac/time.h
search.lo: ../libldap/ldap-int.h
search.lo: ../libldap/../liblber/lber-int.h
search.lo: ../../include/lber.h
search.lo: ../../include/lber_types.h
search.lo: ../../include/ldap_cdefs.h
search.lo: ../../include/ldap_log.h
search.lo: ../../include/lber_pvt.h
search.lo: ../../include/lber.h
search.lo: ../../include/ldap_queue.h
search.lo: ../../include/ldap_pvt_thread.h
search.lo: ../../include/ldap_int_thread.h
search.lo: ../../include/ldap_log.h
search.lo: ../../include/ldap.h
search.lo: ../../include/ldap_features.h
search.lo: ../../include/ldap_pvt.h
search.lo: ../../include/ldap_pvt_uc.h
search.lo: ../../include/ac/bytes.h
search.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
search.lo: ../../include/ldap_log.h
controls.lo: controls.c
controls.lo: ../../include/portable.h
controls.lo: ../../include/ac/fdset.h
controls.lo: ../../include/ldap_cdefs.h
controls.lo: ../../include/ldap_features.h
controls.lo: ../../include/ac/assert.h
controls.lo: ../../include/ac/localize.h
controls.lo: ../../include/ac/stdlib.h
controls.lo: ../../include/ac/time.h
controls.lo: ../../include/ac/string.h
controls.lo: ../libldap/ldap-int.h
controls.lo: ../libldap/../liblber/lber-int.h
controls.lo: ../../include/lber.h
controls.lo: ../../include/lber_types.h
controls.lo: ../../include/ldap_cdefs.h
controls.lo: ../../include/ldap_log.h
controls.lo: ../../include/lber_pvt.h
controls.lo: ../../include/lber.h
controls.lo: ../../include/ldap_queue.h
controls.lo: ../../include/ldap_pvt_thread.h
controls.lo: ../../include/ldap_int_thread.h
controls.lo: ../../include/ldap_log.h
controls.lo: ../../include/ldap.h
controls.lo: ../../include/ldap_features.h
controls.lo: ../../include/ldap_pvt.h
controls.lo: ../../include/ldap_pvt_uc.h
controls.lo: ../../include/ac/bytes.h
controls.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
messages.lo: messages.c
messages.lo: ../../include/portable.h
messages.lo: ../../include/ac/fdset.h
messages.lo: ../../include/ldap_cdefs.h
messages.lo: ../../include/ldap_features.h
messages.lo: ../../include/ac/assert.h
messages.lo: ../../include/ac/localize.h
messages.lo: ../../include/ac/stdlib.h
messages.lo: ../../include/ac/socket.h
messages.lo: ../../include/ac/string.h
messages.lo: ../../include/ac/time.h
messages.lo: ../libldap/ldap-int.h
messages.lo: ../libldap/../liblber/lber-int.h
messages.lo: ../../include/lber.h
messages.lo: ../../include/lber_types.h
messages.lo: ../../include/ldap_cdefs.h
messages.lo: ../../include/ldap_log.h
messages.lo: ../../include/lber_pvt.h
messages.lo: ../../include/lber.h
messages.lo: ../../include/ldap_queue.h
messages.lo: ../../include/ldap_pvt_thread.h
messages.lo: ../../include/ldap_int_thread.h
messages.lo: ../../include/ldap_log.h
messages.lo: ../../include/ldap.h
messages.lo: ../../include/ldap_features.h
messages.lo: ../../include/ldap_pvt.h
messages.lo: ../../include/ldap_pvt_uc.h
messages.lo: ../../include/ac/bytes.h
messages.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
references.lo: references.c
references.lo: ../../include/portable.h
references.lo: ../../include/ac/fdset.h
references.lo: ../../include/ldap_cdefs.h
references.lo: ../../include/ldap_features.h
references.lo: ../../include/ac/assert.h
references.lo: ../../include/ac/localize.h
references.lo: ../../include/ac/stdlib.h
references.lo: ../../include/ac/socket.h
references.lo: ../../include/ac/string.h
references.lo: ../../include/ac/time.h
references.lo: ../libldap/ldap-int.h
references.lo: ../libldap/../liblber/lber-int.h
references.lo: ../../include/lber.h
references.lo: ../../include/lber_types.h
references.lo: ../../include/ldap_cdefs.h
references.lo: ../../include/ldap_log.h
references.lo: ../../include/lber_pvt.h
references.lo: ../../include/lber.h
references.lo: ../../include/ldap_queue.h
references.lo: ../../include/ldap_pvt_thread.h
references.lo: ../../include/ldap_int_thread.h
references.lo: ../../include/ldap_log.h
references.lo: ../../include/ldap.h
references.lo: ../../include/ldap_features.h
references.lo: ../../include/ldap_pvt.h
references.lo: ../../include/ldap_pvt_uc.h
references.lo: ../../include/ac/bytes.h
references.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
extended.lo: extended.c
extended.lo: ../../include/portable.h
extended.lo: ../../include/ac/fdset.h
extended.lo: ../../include/ldap_cdefs.h
extended.lo: ../../include/ldap_features.h
extended.lo: ../../include/ac/assert.h
extended.lo: ../../include/ac/localize.h
extended.lo: ../../include/ac/stdlib.h
extended.lo: ../../include/ac/socket.h
extended.lo: ../../include/ac/string.h
extended.lo: ../../include/ac/time.h
extended.lo: ../libldap/ldap-int.h
extended.lo: ../libldap/../liblber/lber-int.h
extended.lo: ../../include/lber.h
extended.lo: ../../include/lber_types.h
extended.lo: ../../include/ldap_cdefs.h
extended.lo: ../../include/ldap_log.h
extended.lo: ../../include/lber_pvt.h
extended.lo: ../../include/lber.h
extended.lo: ../../include/ldap_queue.h
extended.lo: ../../include/ldap_pvt_thread.h
extended.lo: ../../include/ldap_int_thread.h
extended.lo: ../../include/ldap_log.h
extended.lo: ../../include/ldap.h
extended.lo: ../../include/ldap_features.h
extended.lo: ../../include/ldap_pvt.h
extended.lo: ../../include/ldap_pvt_uc.h
extended.lo: ../../include/ac/bytes.h
extended.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
extended.lo: ../../include/ldap_log.h
cyrus.lo: cyrus.c
cyrus.lo: ../../include/portable.h
cyrus.lo: ../../include/ac/fdset.h
cyrus.lo: ../../include/ldap_cdefs.h
cyrus.lo: ../../include/ldap_features.h
cyrus.lo: ../../include/ac/assert.h
cyrus.lo: ../../include/ac/localize.h
cyrus.lo: ../../include/ac/socket.h
cyrus.lo: ../../include/ac/stdlib.h
cyrus.lo: ../../include/ac/string.h
cyrus.lo: ../../include/ac/time.h
cyrus.lo: ../../include/ac/errno.h
cyrus.lo: ../../include/ac/ctype.h
cyrus.lo: ../../include/ac/unistd.h
cyrus.lo: ../../include/lutil_lockf.h
cyrus.lo: ../libldap/ldap-int.h
cyrus.lo: ../libldap/../liblber/lber-int.h
cyrus.lo: ../../include/lber.h
cyrus.lo: ../../include/lber_types.h
cyrus.lo: ../../include/ldap_cdefs.h
cyrus.lo: ../../include/ldap_log.h
cyrus.lo: ../../include/lber_pvt.h
cyrus.lo: ../../include/lber.h
cyrus.lo: ../../include/ldap_queue.h
cyrus.lo: ../../include/ldap_pvt_thread.h
cyrus.lo: ../../include/ldap_int_thread.h
cyrus.lo: ../../include/ldap_log.h
cyrus.lo: ../../include/ldap.h
cyrus.lo: ../../include/ldap_features.h
cyrus.lo: ../../include/ldap_pvt.h
cyrus.lo: ../../include/ldap_pvt_uc.h
cyrus.lo: ../../include/ac/bytes.h
cyrus.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
modify.lo: modify.c
modify.lo: ../../include/portable.h
modify.lo: ../../include/ac/fdset.h
modify.lo: ../../include/ldap_cdefs.h
modify.lo: ../../include/ldap_features.h
modify.lo: ../../include/ac/assert.h
modify.lo: ../../include/ac/localize.h
modify.lo: ../../include/ac/socket.h
modify.lo: ../../include/ac/string.h
modify.lo: ../../include/ac/time.h
modify.lo: ../libldap/ldap-int.h
modify.lo: ../libldap/../liblber/lber-int.h
modify.lo: ../../include/lber.h
modify.lo: ../../include/lber_types.h
modify.lo: ../../include/ldap_cdefs.h
modify.lo: ../../include/ldap_log.h
modify.lo: ../../include/lber_pvt.h
modify.lo: ../../include/lber.h
modify.lo: ../../include/ldap_queue.h
modify.lo: ../../include/ldap_pvt_thread.h
modify.lo: ../../include/ldap_int_thread.h
modify.lo: ../../include/ldap_log.h
modify.lo: ../../include/ldap.h
modify.lo: ../../include/ldap_features.h
modify.lo: ../../include/ldap_pvt.h
modify.lo: ../../include/ldap_pvt_uc.h
modify.lo: ../../include/ac/bytes.h
modify.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
add.lo: add.c
add.lo: ../../include/portable.h
add.lo: ../../include/ac/fdset.h
add.lo: ../../include/ldap_cdefs.h
add.lo: ../../include/ldap_features.h
add.lo: ../../include/ac/assert.h
add.lo: ../../include/ac/localize.h
add.lo: ../../include/ac/socket.h
add.lo: ../../include/ac/string.h
add.lo: ../../include/ac/time.h
add.lo: ../libldap/ldap-int.h
add.lo: ../libldap/../liblber/lber-int.h
add.lo: ../../include/lber.h
add.lo: ../../include/lber_types.h
add.lo: ../../include/ldap_cdefs.h
add.lo: ../../include/ldap_log.h
add.lo: ../../include/lber_pvt.h
add.lo: ../../include/lber.h
add.lo: ../../include/ldap_queue.h
add.lo: ../../include/ldap_pvt_thread.h
add.lo: ../../include/ldap_int_thread.h
add.lo: ../../include/ldap_log.h
add.lo: ../../include/ldap.h
add.lo: ../../include/ldap_features.h
add.lo: ../../include/ldap_pvt.h
add.lo: ../../include/ldap_pvt_uc.h
add.lo: ../../include/ac/bytes.h
add.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
modrdn.lo: modrdn.c
modrdn.lo: ../../include/portable.h
modrdn.lo: ../../include/ac/fdset.h
modrdn.lo: ../../include/ldap_cdefs.h
modrdn.lo: ../../include/ldap_features.h
modrdn.lo: ../../include/ac/assert.h
modrdn.lo: ../../include/ac/localize.h
modrdn.lo: ../../include/ac/socket.h
modrdn.lo: ../../include/ac/string.h
modrdn.lo: ../../include/ac/time.h
modrdn.lo: ../libldap/ldap-int.h
modrdn.lo: ../libldap/../liblber/lber-int.h
modrdn.lo: ../../include/lber.h
modrdn.lo: ../../include/lber_types.h
modrdn.lo: ../../include/ldap_cdefs.h
modrdn.lo: ../../include/ldap_log.h
modrdn.lo: ../../include/lber_pvt.h
modrdn.lo: ../../include/lber.h
modrdn.lo: ../../include/ldap_queue.h
modrdn.lo: ../../include/ldap_pvt_thread.h
modrdn.lo: ../../include/ldap_int_thread.h
modrdn.lo: ../../include/ldap_log.h
modrdn.lo: ../../include/ldap.h
modrdn.lo: ../../include/ldap_features.h
modrdn.lo: ../../include/ldap_pvt.h
modrdn.lo: ../../include/ldap_pvt_uc.h
modrdn.lo: ../../include/ac/bytes.h
modrdn.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
delete.lo: delete.c
delete.lo: ../../include/portable.h
delete.lo: ../../include/ac/fdset.h
delete.lo: ../../include/ldap_cdefs.h
delete.lo: ../../include/ldap_features.h
delete.lo: ../../include/ac/assert.h
delete.lo: ../../include/ac/localize.h
delete.lo: ../../include/ac/socket.h
delete.lo: ../../include/ac/string.h
delete.lo: ../../include/ac/time.h
delete.lo: ../libldap/ldap-int.h
delete.lo: ../libldap/../liblber/lber-int.h
delete.lo: ../../include/lber.h
delete.lo: ../../include/lber_types.h
delete.lo: ../../include/ldap_cdefs.h
delete.lo: ../../include/ldap_log.h
delete.lo: ../../include/lber_pvt.h
delete.lo: ../../include/lber.h
delete.lo: ../../include/ldap_queue.h
delete.lo: ../../include/ldap_pvt_thread.h
delete.lo: ../../include/ldap_int_thread.h
delete.lo: ../../include/ldap_log.h
delete.lo: ../../include/ldap.h
delete.lo: ../../include/ldap_features.h
delete.lo: ../../include/ldap_pvt.h
delete.lo: ../../include/ldap_pvt_uc.h
delete.lo: ../../include/ac/bytes.h
delete.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
abandon.lo: abandon.c
abandon.lo: ../../include/portable.h
abandon.lo: ../../include/ac/fdset.h
abandon.lo: ../../include/ldap_cdefs.h
abandon.lo: ../../include/ldap_features.h
abandon.lo: ../../include/ac/assert.h
abandon.lo: ../../include/ac/localize.h
abandon.lo: ../../include/ac/stdlib.h
abandon.lo: ../../include/ac/socket.h
abandon.lo: ../../include/ac/string.h
abandon.lo: ../../include/ac/time.h
abandon.lo: ../libldap/ldap-int.h
abandon.lo: ../libldap/../liblber/lber-int.h
abandon.lo: ../../include/lber.h
abandon.lo: ../../include/lber_types.h
abandon.lo: ../../include/ldap_cdefs.h
abandon.lo: ../../include/ldap_log.h
abandon.lo: ../../include/lber_pvt.h
abandon.lo: ../../include/lber.h
abandon.lo: ../../include/ldap_queue.h
abandon.lo: ../../include/ldap_pvt_thread.h
abandon.lo: ../../include/ldap_int_thread.h
abandon.lo: ../../include/ldap_log.h
abandon.lo: ../../include/ldap.h
abandon.lo: ../../include/ldap_features.h
abandon.lo: ../../include/ldap_pvt.h
abandon.lo: ../../include/ldap_pvt_uc.h
abandon.lo: ../../include/ac/bytes.h
abandon.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
abandon.lo: ../../include/lutil.h
sasl.lo: sasl.c
sasl.lo: ../../include/portable.h
sasl.lo: ../../include/ac/fdset.h
sasl.lo: ../../include/ldap_cdefs.h
sasl.lo: ../../include/ldap_features.h
sasl.lo: ../../include/ac/assert.h
sasl.lo: ../../include/ac/localize.h
sasl.lo: ../../include/ac/socket.h
sasl.lo: ../../include/ac/stdlib.h
sasl.lo: ../../include/ac/string.h
sasl.lo: ../../include/ac/time.h
sasl.lo: ../../include/ac/errno.h
sasl.lo: ../libldap/ldap-int.h
sasl.lo: ../libldap/../liblber/lber-int.h
sasl.lo: ../../include/lber.h
sasl.lo: ../../include/lber_types.h
sasl.lo: ../../include/ldap_cdefs.h
sasl.lo: ../../include/ldap_log.h
sasl.lo: ../../include/lber_pvt.h
sasl.lo: ../../include/lber.h
sasl.lo: ../../include/ldap_queue.h
sasl.lo: ../../include/ldap_pvt_thread.h
sasl.lo: ../../include/ldap_int_thread.h
sasl.lo: ../../include/ldap_log.h
sasl.lo: ../../include/ldap.h
sasl.lo: ../../include/ldap_features.h
sasl.lo: ../../include/ldap_pvt.h
sasl.lo: ../../include/ldap_pvt_uc.h
sasl.lo: ../../include/ac/bytes.h
sasl.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
sbind.lo: sbind.c
sbind.lo: ../../include/portable.h
sbind.lo: ../../include/ac/fdset.h
sbind.lo: ../../include/ldap_cdefs.h
sbind.lo: ../../include/ldap_features.h
sbind.lo: ../../include/ac/assert.h
sbind.lo: ../../include/ac/localize.h
sbind.lo: ../../include/ac/socket.h
sbind.lo: ../../include/ac/string.h
sbind.lo: ../../include/ac/time.h
sbind.lo: ../libldap/ldap-int.h
sbind.lo: ../libldap/../liblber/lber-int.h
sbind.lo: ../../include/lber.h
sbind.lo: ../../include/lber_types.h
sbind.lo: ../../include/ldap_cdefs.h
sbind.lo: ../../include/ldap_log.h
sbind.lo: ../../include/lber_pvt.h
sbind.lo: ../../include/lber.h
sbind.lo: ../../include/ldap_queue.h
sbind.lo: ../../include/ldap_pvt_thread.h
sbind.lo: ../../include/ldap_int_thread.h
sbind.lo: ../../include/ldap_log.h
sbind.lo: ../../include/ldap.h
sbind.lo: ../../include/ldap_features.h
sbind.lo: ../../include/ldap_pvt.h
sbind.lo: ../../include/ldap_pvt_uc.h
sbind.lo: ../../include/ac/bytes.h
sbind.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
unbind.lo: unbind.c
unbind.lo: ../../include/portable.h
unbind.lo: ../../include/ac/fdset.h
unbind.lo: ../../include/ldap_cdefs.h
unbind.lo: ../../include/ldap_features.h
unbind.lo: ../../include/ac/assert.h
unbind.lo: ../../include/ac/localize.h
unbind.lo: ../../include/ac/stdlib.h
unbind.lo: ../../include/ac/socket.h
unbind.lo: ../../include/ac/string.h
unbind.lo: ../../include/ac/time.h
unbind.lo: ../libldap/ldap-int.h
unbind.lo: ../libldap/../liblber/lber-int.h
unbind.lo: ../../include/lber.h
unbind.lo: ../../include/lber_types.h
unbind.lo: ../../include/ldap_cdefs.h
unbind.lo: ../../include/ldap_log.h
unbind.lo: ../../include/lber_pvt.h
unbind.lo: ../../include/lber.h
unbind.lo: ../../include/ldap_queue.h
unbind.lo: ../../include/ldap_pvt_thread.h
unbind.lo: ../../include/ldap_int_thread.h
unbind.lo: ../../include/ldap_log.h
unbind.lo: ../../include/ldap.h
unbind.lo: ../../include/ldap_features.h
unbind.lo: ../../include/ldap_pvt.h
unbind.lo: ../../include/ldap_pvt_uc.h
unbind.lo: ../../include/ac/bytes.h
unbind.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
cancel.lo: cancel.c
cancel.lo: ../../include/portable.h
cancel.lo: ../../include/ac/fdset.h
cancel.lo: ../../include/ldap_cdefs.h
cancel.lo: ../../include/ldap_features.h
cancel.lo: ../../include/ac/assert.h
cancel.lo: ../../include/ac/localize.h
cancel.lo: ../../include/ac/stdlib.h
cancel.lo: ../../include/ac/socket.h
cancel.lo: ../../include/ac/string.h
cancel.lo: ../../include/ac/time.h
cancel.lo: ../libldap/ldap-int.h
cancel.lo: ../libldap/../liblber/lber-int.h
cancel.lo: ../../include/lber.h
cancel.lo: ../../include/lber_types.h
cancel.lo: ../../include/ldap_cdefs.h
cancel.lo: ../../include/ldap_log.h
cancel.lo: ../../include/lber_pvt.h
cancel.lo: ../../include/lber.h
cancel.lo: ../../include/ldap_queue.h
cancel.lo: ../../include/ldap_pvt_thread.h
cancel.lo: ../../include/ldap_int_thread.h
cancel.lo: ../../include/ldap_log.h
cancel.lo: ../../include/ldap.h
cancel.lo: ../../include/ldap_features.h
cancel.lo: ../../include/ldap_pvt.h
cancel.lo: ../../include/ldap_pvt_uc.h
cancel.lo: ../../include/ac/bytes.h
cancel.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
cancel.lo: ../../include/ldap_log.h
filter.lo: filter.c
filter.lo: ../../include/portable.h
filter.lo: ../../include/ac/fdset.h
filter.lo: ../../include/ldap_cdefs.h
filter.lo: ../../include/ldap_features.h
filter.lo: ../../include/ac/assert.h
filter.lo: ../../include/ac/localize.h
filter.lo: ../../include/ac/stdlib.h
filter.lo: ../../include/ac/socket.h
filter.lo: ../../include/ac/string.h
filter.lo: ../../include/ac/time.h
filter.lo: ../libldap/ldap-int.h
filter.lo: ../libldap/../liblber/lber-int.h
filter.lo: ../../include/lber.h
filter.lo: ../../include/lber_types.h
filter.lo: ../../include/ldap_cdefs.h
filter.lo: ../../include/ldap_log.h
filter.lo: ../../include/lber_pvt.h
filter.lo: ../../include/lber.h
filter.lo: ../../include/ldap_queue.h
filter.lo: ../../include/ldap_pvt_thread.h
filter.lo: ../../include/ldap_int_thread.h
filter.lo: ../../include/ldap_log.h
filter.lo: ../../include/ldap.h
filter.lo: ../../include/ldap_features.h
filter.lo: ../../include/ldap_pvt.h
filter.lo: ../../include/ldap_pvt_uc.h
filter.lo: ../../include/ac/bytes.h
filter.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
free.lo: free.c
free.lo: ../../include/portable.h
free.lo: ../../include/ac/fdset.h
free.lo: ../../include/ldap_cdefs.h
free.lo: ../../include/ldap_features.h
free.lo: ../../include/ac/assert.h
free.lo: ../../include/ac/localize.h
free.lo: ../../include/ac/stdlib.h
free.lo: ../../include/ac/string.h
free.lo: ../../include/ac/time.h
free.lo: ../libldap/ldap-int.h
free.lo: ../libldap/../liblber/lber-int.h
free.lo: ../../include/lber.h
free.lo: ../../include/lber_types.h
free.lo: ../../include/ldap_cdefs.h
free.lo: ../../include/ldap_log.h
free.lo: ../../include/lber_pvt.h
free.lo: ../../include/lber.h
free.lo: ../../include/ldap_queue.h
free.lo: ../../include/ldap_pvt_thread.h
free.lo: ../../include/ldap_int_thread.h
free.lo: ../../include/ldap_log.h
free.lo: ../../include/ldap.h
free.lo: ../../include/ldap_features.h
free.lo: ../../include/ldap_pvt.h
free.lo: ../../include/ldap_pvt_uc.h
free.lo: ../../include/ac/bytes.h
free.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
sort.lo: sort.c
sort.lo: ../../include/portable.h
sort.lo: ../../include/ac/fdset.h
sort.lo: ../../include/ldap_cdefs.h
sort.lo: ../../include/ldap_features.h
sort.lo: ../../include/ac/assert.h
sort.lo: ../../include/ac/localize.h
sort.lo: ../../include/ac/stdlib.h
sort.lo: ../../include/ac/ctype.h
sort.lo: ../../include/ac/string.h
sort.lo: ../../include/ac/time.h
sort.lo: ../libldap/ldap-int.h
sort.lo: ../libldap/../liblber/lber-int.h
sort.lo: ../../include/lber.h
sort.lo: ../../include/lber_types.h
sort.lo: ../../include/ldap_cdefs.h
sort.lo: ../../include/ldap_log.h
sort.lo: ../../include/lber_pvt.h
sort.lo: ../../include/lber.h
sort.lo: ../../include/ldap_queue.h
sort.lo: ../../include/ldap_pvt_thread.h
sort.lo: ../../include/ldap_int_thread.h
sort.lo: ../../include/ldap_log.h
sort.lo: ../../include/ldap.h
sort.lo: ../../include/ldap_features.h
sort.lo: ../../include/ldap_pvt.h
sort.lo: ../../include/ldap_pvt_uc.h
sort.lo: ../../include/ac/bytes.h
sort.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
passwd.lo: passwd.c
passwd.lo: ../../include/portable.h
passwd.lo: ../../include/ac/fdset.h
passwd.lo: ../../include/ldap_cdefs.h
passwd.lo: ../../include/ldap_features.h
passwd.lo: ../../include/ac/assert.h
passwd.lo: ../../include/ac/localize.h
passwd.lo: ../../include/ac/stdlib.h
passwd.lo: ../../include/ac/string.h
passwd.lo: ../../include/ac/time.h
passwd.lo: ../libldap/ldap-int.h
passwd.lo: ../libldap/../liblber/lber-int.h
passwd.lo: ../../include/lber.h
passwd.lo: ../../include/lber_types.h
passwd.lo: ../../include/ldap_cdefs.h
passwd.lo: ../../include/ldap_log.h
passwd.lo: ../../include/lber_pvt.h
passwd.lo: ../../include/lber.h
passwd.lo: ../../include/ldap_queue.h
passwd.lo: ../../include/ldap_pvt_thread.h
passwd.lo: ../../include/ldap_int_thread.h
passwd.lo: ../../include/ldap_log.h
passwd.lo: ../../include/ldap.h
passwd.lo: ../../include/ldap_features.h
passwd.lo: ../../include/ldap_pvt.h
passwd.lo: ../../include/ldap_pvt_uc.h
passwd.lo: ../../include/ac/bytes.h
passwd.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
whoami.lo: whoami.c
whoami.lo: ../../include/portable.h
whoami.lo: ../../include/ac/fdset.h
whoami.lo: ../../include/ldap_cdefs.h
whoami.lo: ../../include/ldap_features.h
whoami.lo: ../../include/ac/assert.h
whoami.lo: ../../include/ac/localize.h
whoami.lo: ../../include/ac/stdlib.h
whoami.lo: ../../include/ac/string.h
whoami.lo: ../../include/ac/time.h
whoami.lo: ../libldap/ldap-int.h
whoami.lo: ../libldap/../liblber/lber-int.h
whoami.lo: ../../include/lber.h
whoami.lo: ../../include/lber_types.h
whoami.lo: ../../include/ldap_cdefs.h
whoami.lo: ../../include/ldap_log.h
whoami.lo: ../../include/lber_pvt.h
whoami.lo: ../../include/lber.h
whoami.lo: ../../include/ldap_queue.h
whoami.lo: ../../include/ldap_pvt_thread.h
whoami.lo: ../../include/ldap_int_thread.h
whoami.lo: ../../include/ldap_log.h
whoami.lo: ../../include/ldap.h
whoami.lo: ../../include/ldap_features.h
whoami.lo: ../../include/ldap_pvt.h
whoami.lo: ../../include/ldap_pvt_uc.h
whoami.lo: ../../include/ac/bytes.h
whoami.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
getdn.lo: getdn.c
getdn.lo: ../../include/portable.h
getdn.lo: ../../include/ac/fdset.h
getdn.lo: ../../include/ldap_cdefs.h
getdn.lo: ../../include/ldap_features.h
getdn.lo: ../../include/ac/assert.h
getdn.lo: ../../include/ac/localize.h
getdn.lo: ../../include/ac/stdlib.h
getdn.lo: ../../include/ac/socket.h
getdn.lo: ../../include/ac/string.h
getdn.lo: ../../include/ac/time.h
getdn.lo: ../libldap/ldap-int.h
getdn.lo: ../libldap/../liblber/lber-int.h
getdn.lo: ../../include/lber.h
getdn.lo: ../../include/lber_types.h
getdn.lo: ../../include/ldap_cdefs.h
getdn.lo: ../../include/ldap_log.h
getdn.lo: ../../include/lber_pvt.h
getdn.lo: ../../include/lber.h
getdn.lo: ../../include/ldap_queue.h
getdn.lo: ../../include/ldap_pvt_thread.h
getdn.lo: ../../include/ldap_int_thread.h
getdn.lo: ../../include/ldap_log.h
getdn.lo: ../../include/ldap.h
getdn.lo: ../../include/ldap_features.h
getdn.lo: ../../include/ldap_pvt.h
getdn.lo: ../../include/ldap_pvt_uc.h
getdn.lo: ../../include/ac/bytes.h
getdn.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
getdn.lo: ../../include/ldap_schema.h
getentry.lo: getentry.c
getentry.lo: ../../include/portable.h
getentry.lo: ../../include/ac/fdset.h
getentry.lo: ../../include/ldap_cdefs.h
getentry.lo: ../../include/ldap_features.h
getentry.lo: ../../include/ac/assert.h
getentry.lo: ../../include/ac/localize.h
getentry.lo: ../../include/ac/stdlib.h
getentry.lo: ../../include/ac/socket.h
getentry.lo: ../../include/ac/string.h
getentry.lo: ../../include/ac/time.h
getentry.lo: ../libldap/ldap-int.h
getentry.lo: ../libldap/../liblber/lber-int.h
getentry.lo: ../../include/lber.h
getentry.lo: ../../include/lber_types.h
getentry.lo: ../../include/ldap_cdefs.h
getentry.lo: ../../include/ldap_log.h
getentry.lo: ../../include/lber_pvt.h
getentry.lo: ../../include/lber.h
getentry.lo: ../../include/ldap_queue.h
getentry.lo: ../../include/ldap_pvt_thread.h
getentry.lo: ../../include/ldap_int_thread.h
getentry.lo: ../../include/ldap_log.h
getentry.lo: ../../include/ldap.h
getentry.lo: ../../include/ldap_features.h
getentry.lo: ../../include/ldap_pvt.h
getentry.lo: ../../include/ldap_pvt_uc.h
getentry.lo: ../../include/ac/bytes.h
getentry.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
getattr.lo: getattr.c
getattr.lo: ../../include/portable.h
getattr.lo: ../../include/ac/fdset.h
getattr.lo: ../../include/ldap_cdefs.h
getattr.lo: ../../include/ldap_features.h
getattr.lo: ../../include/ac/assert.h
getattr.lo: ../../include/ac/localize.h
getattr.lo: ../../include/ac/stdlib.h
getattr.lo: ../../include/ac/socket.h
getattr.lo: ../../include/ac/string.h
getattr.lo: ../../include/ac/time.h
getattr.lo: ../libldap/ldap-int.h
getattr.lo: ../libldap/../liblber/lber-int.h
getattr.lo: ../../include/lber.h
getattr.lo: ../../include/lber_types.h
getattr.lo: ../../include/ldap_cdefs.h
getattr.lo: ../../include/ldap_log.h
getattr.lo: ../../include/lber_pvt.h
getattr.lo: ../../include/lber.h
getattr.lo: ../../include/ldap_queue.h
getattr.lo: ../../include/ldap_pvt_thread.h
getattr.lo: ../../include/ldap_int_thread.h
getattr.lo: ../../include/ldap_log.h
getattr.lo: ../../include/ldap.h
getattr.lo: ../../include/ldap_features.h
getattr.lo: ../../include/ldap_pvt.h
getattr.lo: ../../include/ldap_pvt_uc.h
getattr.lo: ../../include/ac/bytes.h
getattr.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
getvalues.lo: getvalues.c
getvalues.lo: ../../include/portable.h
getvalues.lo: ../../include/ac/fdset.h
getvalues.lo: ../../include/ldap_cdefs.h
getvalues.lo: ../../include/ldap_features.h
getvalues.lo: ../../include/ac/assert.h
getvalues.lo: ../../include/ac/localize.h
getvalues.lo: ../../include/ac/stdlib.h
getvalues.lo: ../../include/ac/ctype.h
getvalues.lo: ../../include/ac/socket.h
getvalues.lo: ../../include/ac/string.h
getvalues.lo: ../../include/ac/time.h
getvalues.lo: ../libldap/ldap-int.h
getvalues.lo: ../libldap/../liblber/lber-int.h
getvalues.lo: ../../include/lber.h
getvalues.lo: ../../include/lber_types.h
getvalues.lo: ../../include/ldap_cdefs.h
getvalues.lo: ../../include/ldap_log.h
getvalues.lo: ../../include/lber_pvt.h
getvalues.lo: ../../include/lber.h
getvalues.lo: ../../include/ldap_queue.h
getvalues.lo: ../../include/ldap_pvt_thread.h
getvalues.lo: ../../include/ldap_int_thread.h
getvalues.lo: ../../include/ldap_log.h
getvalues.lo: ../../include/ldap.h
getvalues.lo: ../../include/ldap_features.h
getvalues.lo: ../../include/ldap_pvt.h
getvalues.lo: ../../include/ldap_pvt_uc.h
getvalues.lo: ../../include/ac/bytes.h
getvalues.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
addentry.lo: addentry.c
addentry.lo: ../../include/portable.h
addentry.lo: ../../include/ac/fdset.h
addentry.lo: ../../include/ldap_cdefs.h
addentry.lo: ../../include/ldap_features.h
addentry.lo: ../../include/ac/assert.h
addentry.lo: ../../include/ac/localize.h
addentry.lo: ../../include/ac/stdlib.h
addentry.lo: ../../include/ac/socket.h
addentry.lo: ../../include/ac/string.h
addentry.lo: ../../include/ac/time.h
addentry.lo: ../libldap/ldap-int.h
addentry.lo: ../libldap/../liblber/lber-int.h
addentry.lo: ../../include/lber.h
addentry.lo: ../../include/lber_types.h
addentry.lo: ../../include/ldap_cdefs.h
addentry.lo: ../../include/ldap_log.h
addentry.lo: ../../include/lber_pvt.h
addentry.lo: ../../include/lber.h
addentry.lo: ../../include/ldap_queue.h
addentry.lo: ../../include/ldap_pvt_thread.h
addentry.lo: ../../include/ldap_int_thread.h
addentry.lo: ../../include/ldap_log.h
addentry.lo: ../../include/ldap.h
addentry.lo: ../../include/ldap_features.h
addentry.lo: ../../include/ldap_pvt.h
addentry.lo: ../../include/ldap_pvt_uc.h
addentry.lo: ../../include/ac/bytes.h
addentry.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
request.lo: request.c
request.lo: ../../include/portable.h
request.lo: ../../include/ac/fdset.h
request.lo: ../../include/ldap_cdefs.h
request.lo: ../../include/ldap_features.h
request.lo: ../../include/ac/assert.h
request.lo: ../../include/ac/localize.h
request.lo: ../../include/ac/stdlib.h
request.lo: ../../include/ac/errno.h
request.lo: ../../include/ac/socket.h
request.lo: ../../include/ac/string.h
request.lo: ../../include/ac/time.h
request.lo: ../../include/ac/unistd.h
request.lo: ../../include/lutil_lockf.h
request.lo: ../libldap/ldap-int.h
request.lo: ../libldap/../liblber/lber-int.h
request.lo: ../../include/lber.h
request.lo: ../../include/lber_types.h
request.lo: ../../include/ldap_cdefs.h
request.lo: ../../include/ldap_log.h
request.lo: ../../include/lber_pvt.h
request.lo: ../../include/lber.h
request.lo: ../../include/ldap_queue.h
request.lo: ../../include/ldap_pvt_thread.h
request.lo: ../../include/ldap_int_thread.h
request.lo: ../../include/ldap_log.h
request.lo: ../../include/ldap.h
request.lo: ../../include/ldap_features.h
request.lo: ../../include/ldap_pvt.h
request.lo: ../../include/ldap_pvt_uc.h
request.lo: ../../include/ac/bytes.h
request.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
os-ip.lo: os-ip.c
os-ip.lo: ../../include/portable.h
os-ip.lo: ../../include/ac/fdset.h
os-ip.lo: ../../include/ldap_cdefs.h
os-ip.lo: ../../include/ldap_features.h
os-ip.lo: ../../include/ac/assert.h
os-ip.lo: ../../include/ac/localize.h
os-ip.lo: ../../include/ac/stdlib.h
os-ip.lo: ../../include/ac/errno.h
os-ip.lo: ../../include/ac/socket.h
os-ip.lo: ../../include/ac/string.h
os-ip.lo: ../../include/ac/time.h
os-ip.lo: ../../include/ac/unistd.h
os-ip.lo: ../../include/lutil_lockf.h
os-ip.lo: ../libldap/ldap-int.h
os-ip.lo: ../libldap/../liblber/lber-int.h
os-ip.lo: ../../include/lber.h
os-ip.lo: ../../include/lber_types.h
os-ip.lo: ../../include/ldap_cdefs.h
os-ip.lo: ../../include/ldap_log.h
os-ip.lo: ../../include/lber_pvt.h
os-ip.lo: ../../include/lber.h
os-ip.lo: ../../include/ldap_queue.h
os-ip.lo: ../../include/ldap_pvt_thread.h
os-ip.lo: ../../include/ldap_int_thread.h
os-ip.lo: ../../include/ldap_log.h
os-ip.lo: ../../include/ldap.h
os-ip.lo: ../../include/ldap_features.h
os-ip.lo: ../../include/ldap_pvt.h
os-ip.lo: ../../include/ldap_pvt_uc.h
os-ip.lo: ../../include/ac/bytes.h
os-ip.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
url.lo: url.c
url.lo: ../../include/portable.h
url.lo: ../../include/ac/fdset.h
url.lo: ../../include/ldap_cdefs.h
url.lo: ../../include/ldap_features.h
url.lo: ../../include/ac/assert.h
url.lo: ../../include/ac/localize.h
url.lo: ../../include/ac/stdlib.h
url.lo: ../../include/ac/ctype.h
url.lo: ../../include/ac/socket.h
url.lo: ../../include/ac/string.h
url.lo: ../../include/ac/time.h
url.lo: ../libldap/ldap-int.h
url.lo: ../libldap/../liblber/lber-int.h
url.lo: ../../include/lber.h
url.lo: ../../include/lber_types.h
url.lo: ../../include/ldap_cdefs.h
url.lo: ../../include/ldap_log.h
url.lo: ../../include/lber_pvt.h
url.lo: ../../include/lber.h
url.lo: ../../include/ldap_queue.h
url.lo: ../../include/ldap_pvt_thread.h
url.lo: ../../include/ldap_int_thread.h
url.lo: ../../include/ldap_log.h
url.lo: ../../include/ldap.h
url.lo: ../../include/ldap_features.h
url.lo: ../../include/ldap_pvt.h
url.lo: ../../include/ldap_pvt_uc.h
url.lo: ../../include/ac/bytes.h
url.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
pagectrl.lo: pagectrl.c
pagectrl.lo: ../../include/portable.h
pagectrl.lo: ../../include/ac/fdset.h
pagectrl.lo: ../../include/ldap_cdefs.h
pagectrl.lo: ../../include/ldap_features.h
pagectrl.lo: ../../include/ac/assert.h
pagectrl.lo: ../../include/ac/localize.h
pagectrl.lo: ../../include/ac/stdlib.h
pagectrl.lo: ../../include/ac/string.h
pagectrl.lo: ../../include/ac/time.h
pagectrl.lo: ../libldap/ldap-int.h
pagectrl.lo: ../libldap/../liblber/lber-int.h
pagectrl.lo: ../../include/lber.h
pagectrl.lo: ../../include/lber_types.h
pagectrl.lo: ../../include/ldap_cdefs.h
pagectrl.lo: ../../include/ldap_log.h
pagectrl.lo: ../../include/lber_pvt.h
pagectrl.lo: ../../include/lber.h
pagectrl.lo: ../../include/ldap_queue.h
pagectrl.lo: ../../include/ldap_pvt_thread.h
pagectrl.lo: ../../include/ldap_int_thread.h
pagectrl.lo: ../../include/ldap_log.h
pagectrl.lo: ../../include/ldap.h
pagectrl.lo: ../../include/ldap_features.h
pagectrl.lo: ../../include/ldap_pvt.h
pagectrl.lo: ../../include/ldap_pvt_uc.h
pagectrl.lo: ../../include/ac/bytes.h
pagectrl.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
sortctrl.lo: sortctrl.c
sortctrl.lo: ../../include/portable.h
sortctrl.lo: ../../include/ac/fdset.h
sortctrl.lo: ../../include/ldap_cdefs.h
sortctrl.lo: ../../include/ldap_features.h
sortctrl.lo: ../../include/ac/assert.h
sortctrl.lo: ../../include/ac/localize.h
sortctrl.lo: ../../include/ac/stdlib.h
sortctrl.lo: ../../include/ac/string.h
sortctrl.lo: ../../include/ac/time.h
sortctrl.lo: ../libldap/ldap-int.h
sortctrl.lo: ../libldap/../liblber/lber-int.h
sortctrl.lo: ../../include/lber.h
sortctrl.lo: ../../include/lber_types.h
sortctrl.lo: ../../include/ldap_cdefs.h
sortctrl.lo: ../../include/ldap_log.h
sortctrl.lo: ../../include/lber_pvt.h
sortctrl.lo: ../../include/lber.h
sortctrl.lo: ../../include/ldap_queue.h
sortctrl.lo: ../../include/ldap_pvt_thread.h
sortctrl.lo: ../../include/ldap_int_thread.h
sortctrl.lo: ../../include/ldap_log.h
sortctrl.lo: ../../include/ldap.h
sortctrl.lo: ../../include/ldap_features.h
sortctrl.lo: ../../include/ldap_pvt.h
sortctrl.lo: ../../include/ldap_pvt_uc.h
sortctrl.lo: ../../include/ac/bytes.h
sortctrl.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
vlvctrl.lo: vlvctrl.c
vlvctrl.lo: ../../include/portable.h
vlvctrl.lo: ../../include/ac/fdset.h
vlvctrl.lo: ../../include/ldap_cdefs.h
vlvctrl.lo: ../../include/ldap_features.h
vlvctrl.lo: ../../include/ac/assert.h
vlvctrl.lo: ../../include/ac/localize.h
vlvctrl.lo: ../../include/ac/stdlib.h
vlvctrl.lo: ../../include/ac/string.h
vlvctrl.lo: ../../include/ac/time.h
vlvctrl.lo: ../libldap/ldap-int.h
vlvctrl.lo: ../libldap/../liblber/lber-int.h
vlvctrl.lo: ../../include/lber.h
vlvctrl.lo: ../../include/lber_types.h
vlvctrl.lo: ../../include/ldap_cdefs.h
vlvctrl.lo: ../../include/ldap_log.h
vlvctrl.lo: ../../include/lber_pvt.h
vlvctrl.lo: ../../include/lber.h
vlvctrl.lo: ../../include/ldap_queue.h
vlvctrl.lo: ../../include/ldap_pvt_thread.h
vlvctrl.lo: ../../include/ldap_int_thread.h
vlvctrl.lo: ../../include/ldap_log.h
vlvctrl.lo: ../../include/ldap.h
vlvctrl.lo: ../../include/ldap_features.h
vlvctrl.lo: ../../include/ldap_pvt.h
vlvctrl.lo: ../../include/ldap_pvt_uc.h
vlvctrl.lo: ../../include/ac/bytes.h
vlvctrl.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
init.lo: init.c
init.lo: ../../include/portable.h
init.lo: ../../include/ac/fdset.h
init.lo: ../../include/ldap_cdefs.h
init.lo: ../../include/ldap_features.h
init.lo: ../../include/ac/assert.h
init.lo: ../../include/ac/localize.h
init.lo: ../../include/ac/stdlib.h
init.lo: ../../include/ac/socket.h
init.lo: ../../include/ac/string.h
init.lo: ../../include/ac/ctype.h
init.lo: ../../include/ac/time.h
init.lo: ../libldap/ldap-int.h
init.lo: ../libldap/../liblber/lber-int.h
init.lo: ../../include/lber.h
init.lo: ../../include/lber_types.h
init.lo: ../../include/ldap_cdefs.h
init.lo: ../../include/ldap_log.h
init.lo: ../../include/lber_pvt.h
init.lo: ../../include/lber.h
init.lo: ../../include/ldap_queue.h
init.lo: ../../include/ldap_pvt_thread.h
init.lo: ../../include/ldap_int_thread.h
init.lo: ../../include/ldap_log.h
init.lo: ../../include/ldap.h
init.lo: ../../include/ldap_features.h
init.lo: ../../include/ldap_pvt.h
init.lo: ../../include/ldap_pvt_uc.h
init.lo: ../../include/ac/bytes.h
init.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
init.lo: ../../include/ldap_defaults.h
init.lo: ../../include/ldap_config.h
init.lo: ../../include/lutil.h
options.lo: options.c
options.lo: ../../include/portable.h
options.lo: ../../include/ac/fdset.h
options.lo: ../../include/ldap_cdefs.h
options.lo: ../../include/ldap_features.h
options.lo: ../../include/ac/assert.h
options.lo: ../../include/ac/localize.h
options.lo: ../../include/ac/stdlib.h
options.lo: ../../include/ac/socket.h
options.lo: ../../include/ac/string.h
options.lo: ../../include/ac/time.h
options.lo: ../libldap/ldap-int.h
options.lo: ../libldap/../liblber/lber-int.h
options.lo: ../../include/lber.h
options.lo: ../../include/lber_types.h
options.lo: ../../include/ldap_cdefs.h
options.lo: ../../include/ldap_log.h
options.lo: ../../include/lber_pvt.h
options.lo: ../../include/lber.h
options.lo: ../../include/ldap_queue.h
options.lo: ../../include/ldap_pvt_thread.h
options.lo: ../../include/ldap_int_thread.h
options.lo: ../../include/ldap_log.h
options.lo: ../../include/ldap.h
options.lo: ../../include/ldap_features.h
options.lo: ../../include/ldap_pvt.h
options.lo: ../../include/ldap_pvt_uc.h
options.lo: ../../include/ac/bytes.h
options.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
print.lo: print.c
print.lo: ../../include/portable.h
print.lo: ../../include/ac/fdset.h
print.lo: ../../include/ldap_cdefs.h
print.lo: ../../include/ldap_features.h
print.lo: ../../include/ac/assert.h
print.lo: ../../include/ac/localize.h
print.lo: ../../include/ac/ctype.h
print.lo: ../../include/ac/stdarg.h
print.lo: ../../include/ac/string.h
print.lo: ../../include/ac/time.h
print.lo: ../libldap/ldap-int.h
print.lo: ../libldap/../liblber/lber-int.h
print.lo: ../../include/lber.h
print.lo: ../../include/lber_types.h
print.lo: ../../include/ldap_cdefs.h
print.lo: ../../include/ldap_log.h
print.lo: ../../include/lber_pvt.h
print.lo: ../../include/lber.h
print.lo: ../../include/ldap_queue.h
print.lo: ../../include/ldap_pvt_thread.h
print.lo: ../../include/ldap_int_thread.h
print.lo: ../../include/ldap_log.h
print.lo: ../../include/ldap.h
print.lo: ../../include/ldap_features.h
print.lo: ../../include/ldap_pvt.h
print.lo: ../../include/ldap_pvt_uc.h
print.lo: ../../include/ac/bytes.h
print.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
string.lo: string.c
string.lo: ../../include/portable.h
string.lo: ../../include/ac/fdset.h
string.lo: ../../include/ldap_cdefs.h
string.lo: ../../include/ldap_features.h
string.lo: ../../include/ac/assert.h
string.lo: ../../include/ac/localize.h
string.lo: ../../include/ac/stdlib.h
string.lo: ../../include/ac/string.h
string.lo: ../../include/ac/time.h
string.lo: ../../include/ac/ctype.h
string.lo: ../libldap/ldap-int.h
string.lo: ../libldap/../liblber/lber-int.h
string.lo: ../../include/lber.h
string.lo: ../../include/lber_types.h
string.lo: ../../include/ldap_cdefs.h
string.lo: ../../include/ldap_log.h
string.lo: ../../include/lber_pvt.h
string.lo: ../../include/lber.h
string.lo: ../../include/ldap_queue.h
string.lo: ../../include/ldap_pvt_thread.h
string.lo: ../../include/ldap_int_thread.h
string.lo: ../../include/ldap_log.h
string.lo: ../../include/ldap.h
string.lo: ../../include/ldap_features.h
string.lo: ../../include/ldap_pvt.h
string.lo: ../../include/ldap_pvt_uc.h
string.lo: ../../include/ac/bytes.h
string.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
util-int.lo: util-int.c
util-int.lo: ../../include/portable.h
util-int.lo: ../../include/ac/fdset.h
util-int.lo: ../../include/ldap_cdefs.h
util-int.lo: ../../include/ldap_features.h
util-int.lo: ../../include/ac/assert.h
util-int.lo: ../../include/ac/localize.h
util-int.lo: ../../include/ac/stdlib.h
util-int.lo: ../../include/ac/errno.h
util-int.lo: ../../include/ac/socket.h
util-int.lo: ../../include/ac/string.h
util-int.lo: ../../include/ac/time.h
util-int.lo: ../../include/ac/unistd.h
util-int.lo: ../../include/lutil_lockf.h
util-int.lo: ../libldap/ldap-int.h
util-int.lo: ../libldap/../liblber/lber-int.h
util-int.lo: ../../include/lber.h
util-int.lo: ../../include/lber_types.h
util-int.lo: ../../include/ldap_cdefs.h
util-int.lo: ../../include/ldap_log.h
util-int.lo: ../../include/lber_pvt.h
util-int.lo: ../../include/lber.h
util-int.lo: ../../include/ldap_queue.h
util-int.lo: ../../include/ldap_pvt_thread.h
util-int.lo: ../../include/ldap_int_thread.h
util-int.lo: ../../include/ldap_log.h
util-int.lo: ../../include/ldap.h
util-int.lo: ../../include/ldap_features.h
util-int.lo: ../../include/ldap_pvt.h
util-int.lo: ../../include/ldap_pvt_uc.h
util-int.lo: ../../include/ac/bytes.h
util-int.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
schema.lo: schema.c
schema.lo: ../../include/portable.h
schema.lo: ../../include/ac/fdset.h
schema.lo: ../../include/ldap_cdefs.h
schema.lo: ../../include/ldap_features.h
schema.lo: ../../include/ac/assert.h
schema.lo: ../../include/ac/localize.h
schema.lo: ../../include/ac/stdlib.h
schema.lo: ../../include/ac/string.h
schema.lo: ../../include/ac/time.h
schema.lo: ../libldap/ldap-int.h
schema.lo: ../libldap/../liblber/lber-int.h
schema.lo: ../../include/lber.h
schema.lo: ../../include/lber_types.h
schema.lo: ../../include/ldap_cdefs.h
schema.lo: ../../include/ldap_log.h
schema.lo: ../../include/lber_pvt.h
schema.lo: ../../include/lber.h
schema.lo: ../../include/ldap_queue.h
schema.lo: ../../include/ldap_pvt_thread.h
schema.lo: ../../include/ldap_int_thread.h
schema.lo: ../../include/ldap_log.h
schema.lo: ../../include/ldap.h
schema.lo: ../../include/ldap_features.h
schema.lo: ../../include/ldap_pvt.h
schema.lo: ../../include/ldap_pvt_uc.h
schema.lo: ../../include/ac/bytes.h
schema.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
schema.lo: ../../include/ldap_schema.h
charray.lo: charray.c
charray.lo: ../../include/portable.h
charray.lo: ../../include/ac/fdset.h
charray.lo: ../../include/ldap_cdefs.h
charray.lo: ../../include/ldap_features.h
charray.lo: ../../include/ac/assert.h
charray.lo: ../../include/ac/localize.h
charray.lo: ../../include/ac/string.h
charray.lo: ../../include/ac/socket.h
charray.lo: ../libldap/ldap-int.h
charray.lo: ../libldap/../liblber/lber-int.h
charray.lo: ../../include/lber.h
charray.lo: ../../include/lber_types.h
charray.lo: ../../include/ldap_cdefs.h
charray.lo: ../../include/ldap_log.h
charray.lo: ../../include/lber_pvt.h
charray.lo: ../../include/lber.h
charray.lo: ../../include/ldap_queue.h
charray.lo: ../../include/ldap_pvt_thread.h
charray.lo: ../../include/ldap_int_thread.h
charray.lo: ../../include/ac/time.h
charray.lo: ../../include/ldap_log.h
charray.lo: ../../include/ldap.h
charray.lo: ../../include/ldap_features.h
charray.lo: ../../include/ldap_pvt.h
charray.lo: ../../include/ldap_pvt_uc.h
charray.lo: ../../include/ac/bytes.h
charray.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
tls.lo: tls.c
tls.lo: ../../include/portable.h
tls.lo: ../../include/ac/fdset.h
tls.lo: ../../include/ldap_cdefs.h
tls.lo: ../../include/ldap_features.h
tls.lo: ../../include/ac/assert.h
tls.lo: ../../include/ac/localize.h
tls.lo: ../../include/ldap_config.h
tls.lo: ../../include/ac/stdlib.h
tls.lo: ../../include/ac/errno.h
tls.lo: ../../include/ac/socket.h
tls.lo: ../../include/ac/string.h
tls.lo: ../../include/ac/ctype.h
tls.lo: ../../include/ac/time.h
tls.lo: ../../include/ac/unistd.h
tls.lo: ../../include/lutil_lockf.h
tls.lo: ../../include/ac/param.h
tls.lo: ../../include/ac/dirent.h
tls.lo: ../libldap/ldap-int.h
tls.lo: ../libldap/../liblber/lber-int.h
tls.lo: ../../include/lber.h
tls.lo: ../../include/lber_types.h
tls.lo: ../../include/ldap_cdefs.h
tls.lo: ../../include/ldap_log.h
tls.lo: ../../include/lber_pvt.h
tls.lo: ../../include/lber.h
tls.lo: ../../include/ldap_queue.h
tls.lo: ../../include/ldap_pvt_thread.h
tls.lo: ../../include/ldap_int_thread.h
tls.lo: ../../include/ldap_log.h
tls.lo: ../../include/ldap.h
tls.lo: ../../include/ldap_features.h
tls.lo: ../../include/ldap_pvt.h
tls.lo: ../../include/ldap_pvt_uc.h
tls.lo: ../../include/ac/bytes.h
tls.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
os-local.lo: os-local.c
os-local.lo: ../../include/portable.h
os-local.lo: ../../include/ac/fdset.h
os-local.lo: ../../include/ldap_cdefs.h
os-local.lo: ../../include/ldap_features.h
os-local.lo: ../../include/ac/assert.h
os-local.lo: ../../include/ac/localize.h
dnssrv.lo: dnssrv.c
dnssrv.lo: ../../include/portable.h
dnssrv.lo: ../../include/ac/fdset.h
dnssrv.lo: ../../include/ldap_cdefs.h
dnssrv.lo: ../../include/ldap_features.h
dnssrv.lo: ../../include/ac/assert.h
dnssrv.lo: ../../include/ac/localize.h
dnssrv.lo: ../../include/ac/stdlib.h
dnssrv.lo: ../../include/ac/param.h
dnssrv.lo: ../../include/ac/socket.h
dnssrv.lo: ../../include/ac/string.h
dnssrv.lo: ../../include/ac/time.h
dnssrv.lo: ../libldap/ldap-int.h
dnssrv.lo: ../libldap/../liblber/lber-int.h
dnssrv.lo: ../../include/lber.h
dnssrv.lo: ../../include/lber_types.h
dnssrv.lo: ../../include/ldap_cdefs.h
dnssrv.lo: ../../include/ldap_log.h
dnssrv.lo: ../../include/lber_pvt.h
dnssrv.lo: ../../include/lber.h
dnssrv.lo: ../../include/ldap_queue.h
dnssrv.lo: ../../include/ldap_pvt_thread.h
dnssrv.lo: ../../include/ldap_int_thread.h
dnssrv.lo: ../../include/ldap_log.h
dnssrv.lo: ../../include/ldap.h
dnssrv.lo: ../../include/ldap_features.h
dnssrv.lo: ../../include/ldap_pvt.h
dnssrv.lo: ../../include/ldap_pvt_uc.h
dnssrv.lo: ../../include/ac/bytes.h
dnssrv.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
utf-8.lo: utf-8.c
utf-8.lo: ../../include/portable.h
utf-8.lo: ../../include/ac/fdset.h
utf-8.lo: ../../include/ldap_cdefs.h
utf-8.lo: ../../include/ldap_features.h
utf-8.lo: ../../include/ac/assert.h
utf-8.lo: ../../include/ac/localize.h
utf-8.lo: ../../include/ac/stdlib.h
utf-8.lo: ../../include/ac/socket.h
utf-8.lo: ../../include/ac/string.h
utf-8.lo: ../../include/ac/time.h
utf-8.lo: ../../include/ldap_utf8.h
utf-8.lo: ../../include/lber_types.h
utf-8.lo: ../../include/ldap_cdefs.h
utf-8.lo: ../libldap/ldap-int.h
utf-8.lo: ../libldap/../liblber/lber-int.h
utf-8.lo: ../../include/lber.h
utf-8.lo: ../../include/ldap_log.h
utf-8.lo: ../../include/lber_pvt.h
utf-8.lo: ../../include/lber.h
utf-8.lo: ../../include/ldap_queue.h
utf-8.lo: ../../include/ldap_pvt_thread.h
utf-8.lo: ../../include/ldap_int_thread.h
utf-8.lo: ../../include/ldap_log.h
utf-8.lo: ../../include/ldap.h
utf-8.lo: ../../include/ldap_features.h
utf-8.lo: ../../include/ldap_pvt.h
utf-8.lo: ../../include/ldap_pvt_uc.h
utf-8.lo: ../../include/ac/bytes.h
utf-8.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
utf-8.lo: ../../include/ldap_defaults.h
utf-8.lo: ../../include/ldap_config.h
utf-8-conv.lo: utf-8-conv.c
utf-8-conv.lo: ../../include/portable.h
utf-8-conv.lo: ../../include/ac/fdset.h
utf-8-conv.lo: ../../include/ldap_cdefs.h
utf-8-conv.lo: ../../include/ldap_features.h
utf-8-conv.lo: ../../include/ac/assert.h
utf-8-conv.lo: ../../include/ac/localize.h
turn.lo: turn.c
turn.lo: ../../include/portable.h
turn.lo: ../../include/ac/fdset.h
turn.lo: ../../include/ldap_cdefs.h
turn.lo: ../../include/ldap_features.h
turn.lo: ../../include/ac/assert.h
turn.lo: ../../include/ac/localize.h
turn.lo: ../../include/ac/stdlib.h
turn.lo: ../../include/ac/socket.h
turn.lo: ../../include/ac/string.h
turn.lo: ../../include/ac/time.h
turn.lo: ../libldap/ldap-int.h
turn.lo: ../libldap/../liblber/lber-int.h
turn.lo: ../../include/lber.h
turn.lo: ../../include/lber_types.h
turn.lo: ../../include/ldap_cdefs.h
turn.lo: ../../include/ldap_log.h
turn.lo: ../../include/lber_pvt.h
turn.lo: ../../include/lber.h
turn.lo: ../../include/ldap_queue.h
turn.lo: ../../include/ldap_pvt_thread.h
turn.lo: ../../include/ldap_int_thread.h
turn.lo: ../../include/ldap_log.h
turn.lo: ../../include/ldap.h
turn.lo: ../../include/ldap_features.h
turn.lo: ../../include/ldap_pvt.h
turn.lo: ../../include/ldap_pvt_uc.h
turn.lo: ../../include/ac/bytes.h
turn.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
turn.lo: ../../include/ldap_log.h
ppolicy.lo: ppolicy.c
ppolicy.lo: ../../include/portable.h
ppolicy.lo: ../../include/ac/fdset.h
ppolicy.lo: ../../include/ldap_cdefs.h
ppolicy.lo: ../../include/ldap_features.h
ppolicy.lo: ../../include/ac/assert.h
ppolicy.lo: ../../include/ac/localize.h
ppolicy.lo: ../../include/ac/stdlib.h
ppolicy.lo: ../../include/ac/string.h
ppolicy.lo: ../../include/ac/time.h
ppolicy.lo: ../libldap/ldap-int.h
ppolicy.lo: ../libldap/../liblber/lber-int.h
ppolicy.lo: ../../include/lber.h
ppolicy.lo: ../../include/lber_types.h
ppolicy.lo: ../../include/ldap_cdefs.h
ppolicy.lo: ../../include/ldap_log.h
ppolicy.lo: ../../include/lber_pvt.h
ppolicy.lo: ../../include/lber.h
ppolicy.lo: ../../include/ldap_queue.h
ppolicy.lo: ../../include/ldap_pvt_thread.h
ppolicy.lo: ../../include/ldap_int_thread.h
ppolicy.lo: ../../include/ldap_log.h
ppolicy.lo: ../../include/ldap.h
ppolicy.lo: ../../include/ldap_features.h
ppolicy.lo: ../../include/ldap_pvt.h
ppolicy.lo: ../../include/ldap_pvt_uc.h
ppolicy.lo: ../../include/ac/bytes.h
ppolicy.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
dds.lo: dds.c
dds.lo: ../../include/portable.h
dds.lo: ../../include/ac/fdset.h
dds.lo: ../../include/ldap_cdefs.h
dds.lo: ../../include/ldap_features.h
dds.lo: ../../include/ac/assert.h
dds.lo: ../../include/ac/localize.h
dds.lo: ../../include/ac/stdlib.h
dds.lo: ../../include/ac/string.h
dds.lo: ../../include/ac/time.h
dds.lo: ../libldap/ldap-int.h
dds.lo: ../libldap/../liblber/lber-int.h
dds.lo: ../../include/lber.h
dds.lo: ../../include/lber_types.h
dds.lo: ../../include/ldap_cdefs.h
dds.lo: ../../include/ldap_log.h
dds.lo: ../../include/lber_pvt.h
dds.lo: ../../include/lber.h
dds.lo: ../../include/ldap_queue.h
dds.lo: ../../include/ldap_pvt_thread.h
dds.lo: ../../include/ldap_int_thread.h
dds.lo: ../../include/ldap_log.h
dds.lo: ../../include/ldap.h
dds.lo: ../../include/ldap_features.h
dds.lo: ../../include/ldap_pvt.h
dds.lo: ../../include/ldap_pvt_uc.h
dds.lo: ../../include/ac/bytes.h
dds.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
txn.lo: txn.c
txn.lo: ../../include/portable.h
txn.lo: ../../include/ac/fdset.h
txn.lo: ../../include/ldap_cdefs.h
txn.lo: ../../include/ldap_features.h
txn.lo: ../../include/ac/assert.h
txn.lo: ../../include/ac/localize.h
txn.lo: ../../include/ac/stdlib.h
txn.lo: ../../include/ac/socket.h
txn.lo: ../../include/ac/string.h
txn.lo: ../../include/ac/time.h
txn.lo: ../libldap/ldap-int.h
txn.lo: ../libldap/../liblber/lber-int.h
txn.lo: ../../include/lber.h
txn.lo: ../../include/lber_types.h
txn.lo: ../../include/ldap_cdefs.h
txn.lo: ../../include/ldap_log.h
txn.lo: ../../include/lber_pvt.h
txn.lo: ../../include/lber.h
txn.lo: ../../include/ldap_queue.h
txn.lo: ../../include/ldap_pvt_thread.h
txn.lo: ../../include/ldap_int_thread.h
txn.lo: ../../include/ldap_log.h
txn.lo: ../../include/ldap.h
txn.lo: ../../include/ldap_features.h
txn.lo: ../../include/ldap_pvt.h
txn.lo: ../../include/ldap_pvt_uc.h
txn.lo: ../../include/ac/bytes.h
txn.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
txn.lo: ../../include/ldap_log.h
ldap_sync.lo: ldap_sync.c
ldap_sync.lo: ../../include/portable.h
ldap_sync.lo: ../../include/ac/fdset.h
ldap_sync.lo: ../../include/ldap_cdefs.h
ldap_sync.lo: ../../include/ldap_features.h
ldap_sync.lo: ../../include/ac/assert.h
ldap_sync.lo: ../../include/ac/localize.h
ldap_sync.lo: ../../include/ac/time.h
ldap_sync.lo: ../libldap/ldap-int.h
ldap_sync.lo: ../libldap/../liblber/lber-int.h
ldap_sync.lo: ../../include/lber.h
ldap_sync.lo: ../../include/lber_types.h
ldap_sync.lo: ../../include/ldap_cdefs.h
ldap_sync.lo: ../../include/ldap_log.h
ldap_sync.lo: ../../include/lber_pvt.h
ldap_sync.lo: ../../include/lber.h
ldap_sync.lo: ../../include/ldap_queue.h
ldap_sync.lo: ../../include/ldap_pvt_thread.h
ldap_sync.lo: ../../include/ldap_int_thread.h
ldap_sync.lo: ../../include/ldap_log.h
ldap_sync.lo: ../../include/ldap.h
ldap_sync.lo: ../../include/ldap_features.h
ldap_sync.lo: ../../include/ldap_pvt.h
ldap_sync.lo: ../../include/ldap_pvt_uc.h
ldap_sync.lo: ../../include/ac/bytes.h
ldap_sync.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h
stctrl.lo: stctrl.c
stctrl.lo: ../../include/portable.h
stctrl.lo: ../../include/ac/fdset.h
stctrl.lo: ../../include/ldap_cdefs.h
stctrl.lo: ../../include/ldap_features.h
stctrl.lo: ../../include/ac/assert.h
stctrl.lo: ../../include/ac/localize.h
stctrl.lo: ../../include/ac/stdlib.h
stctrl.lo: ../../include/ac/string.h
stctrl.lo: ../../include/ac/time.h
stctrl.lo: ../libldap/ldap-int.h
stctrl.lo: ../libldap/../liblber/lber-int.h
stctrl.lo: ../../include/lber.h
stctrl.lo: ../../include/lber_types.h
stctrl.lo: ../../include/ldap_cdefs.h
stctrl.lo: ../../include/ldap_log.h
stctrl.lo: ../../include/lber_pvt.h
stctrl.lo: ../../include/lber.h
stctrl.lo: ../../include/ldap_queue.h
stctrl.lo: ../../include/ldap_pvt_thread.h
stctrl.lo: ../../include/ldap_int_thread.h
stctrl.lo: ../../include/ldap_log.h
stctrl.lo: ../../include/ldap.h
stctrl.lo: ../../include/ldap_features.h
stctrl.lo: ../../include/ldap_pvt.h
stctrl.lo: ../../include/ldap_pvt_uc.h
stctrl.lo: ../../include/ac/bytes.h
stctrl.lo: ../../include/../libraries/liblunicode/ucdata/ucdata.h

# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
