# $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 for -llutil
# $OpenLDAP: pkg/ldap/libraries/liblutil/Makefile.in,v 1.38.2.3 2008/02/11 23:26:42 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	= liblutil.a
PROGRAM = testavl

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

NT_SRCS = ntservice.c
NT_OBJS = ntservice.o slapdmsg.res

UNIX_SRCS = detach.c
UNIX_OBJS = detach.o

XLIBS = $(LIBRARY) $(LDAP_LIBLBER_LA)

SRCS	= base64.c csn.c entropy.c sasl.c signal.c hash.c passfile.c \
	md5.c passwd.c sha1.c getpass.c lockf.c utils.c uuid.c sockpair.c \
	avl.c tavl.c ldif.c fetch.c \
	testavl.c \
	 setproctitle.c getpeereid.c $(NT_SRCS)

OBJS	= base64.o csn.o entropy.o sasl.o signal.o hash.o passfile.o \
	md5.o passwd.o sha1.o getpass.o lockf.o utils.o uuid.o sockpair.o \
	avl.o tavl.o ldif.o fetch.o \
	 setproctitle$U.o getpeereid$U.o $(NT_OBJS)

testavl: $(XLIBS) testavl.o
	(LTLINK) -o $@ testavl.o $(LIBS)

testtavl: $(XLIBS) testtavl.o
	(LTLINK) -o $@ testtavl.o $(LIBS)

# These rules are for a Mingw32 build, specifically.
# It's ok for them to be here because the clean rule is harmless, and
# slapdmsg.res won't get built unless it's declared in OBJS.

slapdmsg.bin: FORCE
	@if [ ! -f $@ ]; then cp $(srcdir)/$@ .; fi

slapdmsg.res: slapdmsg.rc slapdmsg.bin
	windres $< -O coff -o $@

clean-local:
	$(RM) *.res

# $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-static.mk,v 1.13.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 Static Libraries
#

$(LIBRARY): version.o
	$(AR) ru $@ $(OBJS) version.o
	@$(RANLIB) $@

Makefile: $(top_srcdir)/build/lib-static.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 -I/opt/openssl-0.9.8g/outinc base64.c csn.c entropy.c sasl.c signal.c hash.c passfile.c md5.c passwd.c sha1.c getpass.c lockf.c utils.c uuid.c sockpair.c avl.c tavl.c ldif.c fetch.c testavl.c setproctitle.c getpeereid.c ntservice.c
# command: gcc -M -I.  -I../../include -I../../include -I/opt/openssl-0.9.8g/outinc base64.c csn.c entropy.c sasl.c signal.c hash.c passfile.c md5.c passwd.c sha1.c getpass.c lockf.c utils.c uuid.c sockpair.c avl.c tavl.c ldif.c fetch.c testavl.c setproctitle.c getpeereid.c ntservice.c
#

base64.o: base64.c
base64.o: ../../include/portable.h
base64.o: ../../include/ac/fdset.h
base64.o: ../../include/ldap_cdefs.h
base64.o: ../../include/ldap_features.h
base64.o: ../../include/ac/assert.h
base64.o: ../../include/ac/localize.h
base64.o: ../../include/ac/assert.h
base64.o: ../../include/ac/stdlib.h
base64.o: ../../include/ac/ctype.h
base64.o: ../../include/ac/string.h
base64.o: ../../include/ac/socket.h
base64.o: ../../include/lutil.h
base64.o: ../../include/ldap_cdefs.h
base64.o: ../../include/lber_types.h
csn.o: csn.c
csn.o: ../../include/portable.h
csn.o: ../../include/ac/fdset.h
csn.o: ../../include/ldap_cdefs.h
csn.o: ../../include/ldap_features.h
csn.o: ../../include/ac/assert.h
csn.o: ../../include/ac/localize.h
csn.o: ../../include/ac/time.h
csn.o: ../../include/lutil.h
csn.o: ../../include/ldap_cdefs.h
csn.o: ../../include/lber_types.h
entropy.o: entropy.c
entropy.o: ../../include/portable.h
entropy.o: ../../include/ac/fdset.h
entropy.o: ../../include/ldap_cdefs.h
entropy.o: ../../include/ldap_features.h
entropy.o: ../../include/ac/assert.h
entropy.o: ../../include/ac/localize.h
entropy.o: ../../include/ac/string.h
entropy.o: ../../include/ac/time.h
entropy.o: ../../include/ac/unistd.h
entropy.o: ../../include/lutil_lockf.h
entropy.o: ../../include/lutil.h
entropy.o: ../../include/ldap_cdefs.h
entropy.o: ../../include/lber_types.h
entropy.o: ../../include/lutil_md5.h
sasl.o: sasl.c
sasl.o: ../../include/portable.h
sasl.o: ../../include/ac/fdset.h
sasl.o: ../../include/ldap_cdefs.h
sasl.o: ../../include/ldap_features.h
sasl.o: ../../include/ac/assert.h
sasl.o: ../../include/ac/localize.h
signal.o: signal.c
signal.o: ../../include/portable.h
signal.o: ../../include/ac/fdset.h
signal.o: ../../include/ldap_cdefs.h
signal.o: ../../include/ldap_features.h
signal.o: ../../include/ac/assert.h
signal.o: ../../include/ac/localize.h
hash.o: hash.c
hash.o: ../../include/portable.h
hash.o: ../../include/ac/fdset.h
hash.o: ../../include/ldap_cdefs.h
hash.o: ../../include/ldap_features.h
hash.o: ../../include/ac/assert.h
hash.o: ../../include/ac/localize.h
hash.o: ../../include/lutil_hash.h
hash.o: ../../include/lber_types.h
hash.o: ../../include/ldap_cdefs.h
passfile.o: passfile.c
passfile.o: ../../include/portable.h
passfile.o: ../../include/ac/fdset.h
passfile.o: ../../include/ldap_cdefs.h
passfile.o: ../../include/ldap_features.h
passfile.o: ../../include/ac/assert.h
passfile.o: ../../include/ac/localize.h
passfile.o: ../../include/ac/stdlib.h
passfile.o: ../../include/ac/ctype.h
passfile.o: ../../include/ac/string.h
passfile.o: ../../include/lber.h
passfile.o: ../../include/lber_types.h
passfile.o: ../../include/ldap_cdefs.h
passfile.o: ../../include/lutil.h
md5.o: md5.c
md5.o: ../../include/portable.h
md5.o: ../../include/ac/fdset.h
md5.o: ../../include/ldap_cdefs.h
md5.o: ../../include/ldap_features.h
md5.o: ../../include/ac/assert.h
md5.o: ../../include/ac/localize.h
md5.o: ../../include/ac/string.h
md5.o: ../../include/ac/socket.h
md5.o: ../../include/lutil_md5.h
md5.o: ../../include/lber_types.h
md5.o: ../../include/ldap_cdefs.h
passwd.o: passwd.c
passwd.o: ../../include/portable.h
passwd.o: ../../include/ac/fdset.h
passwd.o: ../../include/ldap_cdefs.h
passwd.o: ../../include/ldap_features.h
passwd.o: ../../include/ac/assert.h
passwd.o: ../../include/ac/localize.h
passwd.o: ../../include/ac/stdlib.h
passwd.o: ../../include/ac/string.h
passwd.o: ../../include/ac/unistd.h
passwd.o: ../../include/lutil_lockf.h
passwd.o: ../../include/ac/param.h
passwd.o: ../../include/lber.h
passwd.o: ../../include/lber_types.h
passwd.o: ../../include/ldap_cdefs.h
passwd.o: ../../include/ldap_pvt.h
passwd.o: ../../include/ldap_pvt_uc.h
passwd.o: ../../include/ac/bytes.h
passwd.o: ../../include/../libraries/liblunicode/ucdata/ucdata.h
passwd.o: ../../include/lber_pvt.h
passwd.o: ../../include/lutil_md5.h
passwd.o: ../../include/lutil_sha1.h
passwd.o: ../../include/lutil.h
sha1.o: sha1.c
sha1.o: ../../include/portable.h
sha1.o: ../../include/ac/fdset.h
sha1.o: ../../include/ldap_cdefs.h
sha1.o: ../../include/ldap_features.h
sha1.o: ../../include/ac/assert.h
sha1.o: ../../include/ac/localize.h
sha1.o: ../../include/ac/param.h
sha1.o: ../../include/ac/string.h
sha1.o: ../../include/ac/socket.h
sha1.o: ../../include/ac/bytes.h
sha1.o: ../../include/lutil_sha1.h
sha1.o: ../../include/ldap_cdefs.h
sha1.o: ../../include/ac/stdlib.h
sha1.o: ../../include/ac/errno.h
sha1.o: ../../include/ac/unistd.h
sha1.o: ../../include/lutil_lockf.h
getpass.o: getpass.c
getpass.o: ../../include/portable.h
getpass.o: ../../include/ac/fdset.h
getpass.o: ../../include/ldap_cdefs.h
getpass.o: ../../include/ldap_features.h
getpass.o: ../../include/ac/assert.h
getpass.o: ../../include/ac/localize.h
getpass.o: ../../include/ac/stdlib.h
getpass.o: ../../include/ac/ctype.h
getpass.o: ../../include/ac/signal.h
getpass.o: ../../include/ac/string.h
getpass.o: ../../include/ac/termios.h
getpass.o: ../../include/ac/time.h
getpass.o: ../../include/ac/unistd.h
getpass.o: ../../include/lutil_lockf.h
getpass.o: ../../include/lber.h
getpass.o: ../../include/lber_types.h
getpass.o: ../../include/ldap_cdefs.h
getpass.o: ../../include/ldap.h
getpass.o: ../../include/ldap_features.h
getpass.o: ../../include/ldap_defaults.h
getpass.o: ../../include/ldap_config.h
lockf.o: lockf.c
lockf.o: ../../include/portable.h
lockf.o: ../../include/ac/fdset.h
lockf.o: ../../include/ldap_cdefs.h
lockf.o: ../../include/ldap_features.h
lockf.o: ../../include/ac/assert.h
lockf.o: ../../include/ac/localize.h
lockf.o: ../../include/ac/unistd.h
lockf.o: ../../include/lutil_lockf.h
utils.o: utils.c
utils.o: ../../include/portable.h
utils.o: ../../include/ac/fdset.h
utils.o: ../../include/ldap_cdefs.h
utils.o: ../../include/ldap_features.h
utils.o: ../../include/ac/assert.h
utils.o: ../../include/ac/localize.h
utils.o: ../../include/ac/stdlib.h
utils.o: ../../include/ac/stdarg.h
utils.o: ../../include/ac/string.h
utils.o: ../../include/ac/ctype.h
utils.o: ../../include/ac/unistd.h
utils.o: ../../include/lutil_lockf.h
utils.o: ../../include/ac/time.h
utils.o: ../../include/ac/errno.h
utils.o: ../../include/lutil.h
utils.o: ../../include/ldap_cdefs.h
utils.o: ../../include/lber_types.h
utils.o: ../../include/ldap_defaults.h
utils.o: ../../include/ldap_config.h
utils.o: ../../include/ldap_pvt.h
utils.o: ../../include/lber.h
utils.o: ../../include/ldap_pvt_uc.h
utils.o: ../../include/ac/bytes.h
utils.o: ../../include/../libraries/liblunicode/ucdata/ucdata.h
utils.o: ../../include/lber_pvt.h
uuid.o: uuid.c
uuid.o: ../../include/portable.h
uuid.o: ../../include/ac/fdset.h
uuid.o: ../../include/ldap_cdefs.h
uuid.o: ../../include/ldap_features.h
uuid.o: ../../include/ac/assert.h
uuid.o: ../../include/ac/localize.h
uuid.o: ../../include/ac/stdlib.h
uuid.o: ../../include/ac/string.h
uuid.o: ../../include/lutil.h
uuid.o: ../../include/ldap_cdefs.h
uuid.o: ../../include/lber_types.h
sockpair.o: sockpair.c
sockpair.o: ../../include/portable.h
sockpair.o: ../../include/ac/fdset.h
sockpair.o: ../../include/ldap_cdefs.h
sockpair.o: ../../include/ldap_features.h
sockpair.o: ../../include/ac/assert.h
sockpair.o: ../../include/ac/localize.h
sockpair.o: ../../include/ac/socket.h
sockpair.o: ../../include/ac/unistd.h
sockpair.o: ../../include/lutil_lockf.h
sockpair.o: ../../include/lutil.h
sockpair.o: ../../include/ldap_cdefs.h
sockpair.o: ../../include/lber_types.h
avl.o: avl.c
avl.o: ../../include/portable.h
avl.o: ../../include/ac/fdset.h
avl.o: ../../include/ldap_cdefs.h
avl.o: ../../include/ldap_features.h
avl.o: ../../include/ac/assert.h
avl.o: ../../include/ac/localize.h
avl.o: ../../include/ac/stdlib.h
avl.o: ../../include/lber.h
avl.o: ../../include/lber_types.h
avl.o: ../../include/ldap_cdefs.h
avl.o: ../../include/avl.h
tavl.o: tavl.c
tavl.o: ../../include/portable.h
tavl.o: ../../include/ac/fdset.h
tavl.o: ../../include/ldap_cdefs.h
tavl.o: ../../include/ldap_features.h
tavl.o: ../../include/ac/assert.h
tavl.o: ../../include/ac/localize.h
tavl.o: ../../include/ac/stdlib.h
tavl.o: ../../include/lber.h
tavl.o: ../../include/lber_types.h
tavl.o: ../../include/ldap_cdefs.h
tavl.o: ../../include/avl.h
ldif.o: ldif.c
ldif.o: ../../include/portable.h
ldif.o: ../../include/ac/fdset.h
ldif.o: ../../include/ldap_cdefs.h
ldif.o: ../../include/ldap_features.h
ldif.o: ../../include/ac/assert.h
ldif.o: ../../include/ac/localize.h
ldif.o: ../../include/ac/stdlib.h
ldif.o: ../../include/ac/ctype.h
ldif.o: ../../include/ac/string.h
ldif.o: ../../include/ac/socket.h
ldif.o: ../../include/ac/time.h
ldif.o: ../../include/ldap_log.h
ldif.o: ../../include/ldap_cdefs.h
ldif.o: ../../include/lber_pvt.h
ldif.o: ../../include/lber.h
ldif.o: ../../include/lber_types.h
ldif.o: ../../include/ldif.h
fetch.o: fetch.c
fetch.o: ../../include/portable.h
fetch.o: ../../include/ac/fdset.h
fetch.o: ../../include/ldap_cdefs.h
fetch.o: ../../include/ldap_features.h
fetch.o: ../../include/ac/assert.h
fetch.o: ../../include/ac/localize.h
fetch.o: ../../include/ac/stdlib.h
fetch.o: ../../include/ac/string.h
fetch.o: ../../include/ac/socket.h
fetch.o: ../../include/ac/time.h
fetch.o: ../../include/ldap_log.h
fetch.o: ../../include/ldap_cdefs.h
fetch.o: ../../include/lber_pvt.h
fetch.o: ../../include/lber.h
fetch.o: ../../include/lber_types.h
fetch.o: ../../include/ldap_pvt.h
fetch.o: ../../include/ldap_pvt_uc.h
fetch.o: ../../include/ac/bytes.h
fetch.o: ../../include/../libraries/liblunicode/ucdata/ucdata.h
fetch.o: ../../include/ldap_config.h
fetch.o: ../../include/ldif.h
testavl.o: testavl.c
testavl.o: ../../include/portable.h
testavl.o: ../../include/ac/fdset.h
testavl.o: ../../include/ldap_cdefs.h
testavl.o: ../../include/ldap_features.h
testavl.o: ../../include/ac/assert.h
testavl.o: ../../include/ac/localize.h
testavl.o: ../../include/ac/stdlib.h
testavl.o: ../../include/ac/string.h
testavl.o: ../../include/avl.h
testavl.o: ../../include/ldap_cdefs.h
setproctitle.o: setproctitle.c
setproctitle.o: ../../include/portable.h
setproctitle.o: ../../include/ac/fdset.h
setproctitle.o: ../../include/ldap_cdefs.h
setproctitle.o: ../../include/ldap_features.h
setproctitle.o: ../../include/ac/assert.h
setproctitle.o: ../../include/ac/localize.h
setproctitle.o: ../../include/ac/stdlib.h
setproctitle.o: ../../include/ac/setproctitle.h
setproctitle.o: ../../include/ac/string.h
setproctitle.o: ../../include/ac/stdarg.h
getpeereid.o: getpeereid.c
getpeereid.o: ../../include/portable.h
getpeereid.o: ../../include/ac/fdset.h
getpeereid.o: ../../include/ldap_cdefs.h
getpeereid.o: ../../include/ldap_features.h
getpeereid.o: ../../include/ac/assert.h
getpeereid.o: ../../include/ac/localize.h
getpeereid.o: ../../include/ac/unistd.h
getpeereid.o: ../../include/lutil_lockf.h
getpeereid.o: ../../include/ac/socket.h
getpeereid.o: ../../include/ac/errno.h
ntservice.o: ntservice.c
ntservice.o: ../../include/portable.h
ntservice.o: ../../include/ac/fdset.h
ntservice.o: ../../include/ldap_cdefs.h
ntservice.o: ../../include/ldap_features.h
ntservice.o: ../../include/ac/assert.h
ntservice.o: ../../include/ac/localize.h
ntservice.o: ../../include/ac/stdlib.h
ntservice.o: ../../include/ac/string.h
ntservice.o: ../../include/ldap.h
ntservice.o: ../../include/lber.h
ntservice.o: ../../include/lber_types.h
ntservice.o: ../../include/ldap_cdefs.h
ntservice.o: ../../include/ldap_features.h
ntservice.o: ../../include/ldap_log.h
ntservice.o: ../../include/ldap_pvt_thread.h
ntservice.o: ../../include/ldap_int_thread.h
ntservice.o: ../../include/ldap_defaults.h
ntservice.o: ../../include/ldap_config.h
ntservice.o: slapdmsg.h

# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
