openldap/libraries/libldap_r/Makefile.in

85 lines
2.8 KiB
Makefile
Raw Normal View History

2003-11-26 10:58:56 +08:00
# Makefile.in for LDAP -lldap
1999-09-09 06:52:19 +08:00
# $OpenLDAP$
2003-11-26 15:16:36 +08:00
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
2007-01-03 04:00:42 +08:00
## Copyright 1998-2007 The OpenLDAP Foundation.
2003-11-26 10:58:56 +08:00
## All rights reserved.
##
2003-11-26 10:58:56 +08:00
## Redistribution and use in source and binary forms, with or without
## modification, are permitted only as authorized by the OpenLDAP
## Public License.
##
2003-11-26 10:58:56 +08:00
## 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
2001-12-20 15:29:33 +08:00
PROGRAMS = apitest ltest
XXDIR = $(srcdir)/../libldap
2002-07-09 08:34:41 +08:00
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 \
2003-02-09 15:42:18 +08:00
modify.c add.c modrdn.c delete.c abandon.c \
2007-01-10 09:18:52 +08:00
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 \
2004-03-13 05:22:32 +08:00
charray.c tls.c os-local.c dnssrv.c utf-8.c utf-8-conv.c \
2007-08-22 07:52:03 +08:00
turn.c ppolicy.c dds.c txn.c ldap_sync.c stctrl.c
2006-04-29 04:12:45 +08:00
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
2006-04-29 04:12:45 +08:00
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 \
2002-07-09 08:34:41 +08:00
bind.lo open.lo result.lo error.lo compare.lo search.lo \
controls.lo messages.lo references.lo extended.lo cyrus.lo \
2003-02-09 15:42:18 +08:00
modify.lo add.lo modrdn.lo delete.lo abandon.lo \
2007-01-10 09:18:52 +08:00
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 \
2006-01-10 05:02:52 +08:00
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 \
2004-03-13 05:22:32 +08:00
charray.lo tls.lo os-local.lo dnssrv.lo utf-8.lo utf-8-conv.lo \
2007-08-22 07:52:03 +08:00
turn.lo ppolicy.lo dds.lo txn.lo ldap_sync.lo stctrl.lo
LDAP_INCDIR= ../../include
LDAP_LIBDIR= ../../libraries
2001-12-07 12:03:25 +08:00
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)
OpenLDAP Devel README This software was obtained from the development branch (HEAD) of the OpenLDAP Software Repository. This copy is likely already not current, the development branch changes frequently. These changes include code implementing experimental features and unproven bug fixes. Please do NOT redistribute copies of the development branch. The OpenLDAP Developer's FAQ is available at: <http://www.openldap.org/faq/index.cgi?file=4> Client developers seeking a suitable development platform should use "release" or "stable" versions. <http://www.openldap.org/software/> Contributing See <http://www.openldap.org/devel/contributing.html> for how to contribute code or documentation to OpenLDAP. Use the Issue Tracking System <http://www.openldap.org/its/> to submit contributions. While you are encouraged to coordinate and discuss the development activities on the openldap-devel@openldap.org mailing list prior to submission, it is noted that contributions must be submitted using the Issue Tracking System to be considered. --- $OpenLDAP: pkg/ldap/README,v 1.45 2007/03/10 17:03:58 kurt Exp $ This work is part of OpenLDAP Software <http://www.openldap.org/>. Copyright 1998-2007 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>. OpenLDAP is a registered trademark of the OpenLDAP Foundation.
2007-11-28 04:48:38 +08:00
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)
2001-12-07 12:03:25 +08:00