]> git.sur5r.net Git - openldap/blobdiff - libraries/libldap/Makefile.in
Fix BUFSIZ v LINE_MAX issue
[openldap] / libraries / libldap / Makefile.in
index a2e2d11762ff1d82cd87978e056deb7ac6d2fe4f..8166aaa90d1daa70b51a42e3855a8ede72c3eba5 100644 (file)
@@ -1,39 +1,78 @@
+# Makefile.in for LDAP -lldap
+# $OpenLDAP$
+## This work is part of OpenLDAP Software <http://www.openldap.org/>.
 ##
-## Makefile.in for LDAP -lldap
+## Copyright 1998-2006 The OpenLDAP Foundation.
+## All rights reserved.
 ##
-LIBRARY = libldap.a
-PROGRAMS = ltest ttest
+## 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.la
+
+PROGRAMS = apitest dntest ftest ltest
 
 SRCS   = bind.c open.c result.c error.c compare.c search.c \
-       modify.c add.c modrdn.c delete.c abandon.c ufn.c cache.c \
-       getfilter.c sbind.c kbind.c unbind.c friendly.c cldap.c \
-       free.c disptmpl.c srchpref.c dsparse.c tmplout.c sort.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 kbind.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 getdxbyname.c os-ip.c url.c charset.c
-OBJS   = bind.o open.o result.o error.o compare.o search.o \
-       modify.o add.o modrdn.o delete.o abandon.o ufn.o cache.o \
-       getfilter.o sbind.o kbind.o unbind.o friendly.o cldap.o \
-       free.o disptmpl.o srchpref.o dsparse.o tmplout.o sort.o \
-       getdn.o getentry.o getattr.o getvalues.o addentry.o \
-       request.o getdxbyname.o os-ip.o url.o charset.o
-
-LIBS = -L. -L../liblber -lldap -llber $(AC_LIBS)
-LIBLBER = ../liblber/liblber.a
-
-ltest: $(LIBRARY) test.o $(LIBLBER)
-       $(CC) $(LDFLAGS) -o $@ test.o $(LIBS)
-ttest: $(LIBRARY) tmpltest.o $(LIBLBER)
-       $(CC) $(LDFLAGS) -o $@ test.o $(LIBS)
-
-CFFILES= ldapfilter.conf ldapfriendly ldaptemplates.conf ldapsearchprefs.conf
-
-install-local: $(LIBRARY) $(CFFILES) FORCE
-       -$(MKDIR) -p $(libdir)
-       $(INSTALL) $(INSTALLFLAGS) -m 644 $(LIBRARY) $(libdir)
-       @(cd /tmp; $(RANLIB) $(libdir)/$(LIBRARY))
-       -$(MKDIR) -p $(sysconfdir)
+       request.c os-ip.c url.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 groupings.c txn.c ppolicy.c
+
+OBJS   = 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 kbind.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 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 groupings.lo txn.lo ppolicy.lo
+
+LDAP_INCDIR= ../../include       
+LDAP_LIBDIR= ../../libraries
+
+LIB_DEFS = -DLDAP_LIBRARY
+
+XLIBS = $(LIBRARY) $(LDAP_LIBLBER_LA) $(LDAP_LIBLUTIL_A)
+XXLIBS = $(SECURITY_LIBS) $(LUTIL_LIBS)
+NT_LINK_LIBS = $(LDAP_LIBLBER_LA) $(AC_LIBS) $(SECURITY_LIBS)
+UNIX_LINK_LIBS = $(LDAP_LIBLBER_LA) $(AC_LIBS) $(SECURITY_LIBS)
+
+apitest:       $(XLIBS) apitest.o
+       $(LTLINK) -o $@ apitest.o $(LIBS)
+dntest:        $(XLIBS) dntest.o
+       $(LTLINK) -o $@ dntest.o $(LIBS)
+ftest: $(XLIBS) ftest.o
+       $(LTLINK) -o $@ ftest.o $(LIBS)
+ltest: $(XLIBS) test.o
+       $(LTLINK) -o $@ test.o $(LIBS)
+
+CFFILES=ldap.conf
+
+install-local: $(CFFILES) FORCE
+       -$(MKDIR) $(DESTDIR)$(libdir)
+       $(LTINSTALL) $(INSTALLFLAGS) -m 644 $(LIBRARY) $(DESTDIR)$(libdir)
+       $(LTFINISH) $(DESTDIR)$(libdir)
+       -$(MKDIR) $(DESTDIR)$(sysconfdir)
        @for i in $(CFFILES); do \
-               echo "installing $$i in $(sysconfdir)"; \
-               $(MV) $(sysconfdir)/$$i $(sysconfdir)/$$i- ; \
-               $(INSTALL) $(INSTALLFLAGS) -m 644 $$i $(sysconfdir) ; \
+               if test ! -f $(DESTDIR)$(sysconfdir)/$$i; then \
+                       echo "installing $$i in $(sysconfdir)"; \
+                       echo "$(INSTALL) $(INSTALLFLAGS) -m 644  $(srcdir)/$$i $(DESTDIR)$(sysconfdir)/$$i"; \
+                       $(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/$$i $(DESTDIR)$(sysconfdir)/$$i; \
+               else \
+                       echo "PRESERVING EXISTING CONFIGURATION FILE $(sysconfdir)/$$i" ; \
+               fi; \
+               $(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/$$i $(DESTDIR)$(sysconfdir)/$$i.default; \
        done
+