openldap/libraries/libldap/Makefile.in

91 lines
3.4 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/>.
##
2021-01-12 03:25:53 +08:00
## Copyright 1998-2021 The OpenLDAP Foundation.
2003-11-26 10:58:56 +08:00
## All rights reserved.
1998-10-25 09:41:42 +08:00
##
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.
1998-10-25 09:41:42 +08:00
##
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.la
2006-09-23 19:44:16 +08:00
PROGRAMS = apitest dntest ftest ltest urltest
1998-10-25 09:41:42 +08:00
SRCS = 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 \
sasl.c sbind.c unbind.c cancel.c \
filter.c free.c sort.c passwd.c whoami.c vc.c \
1998-10-25 09:41:42 +08:00
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 os-local.c dnssrv.c utf-8.c utf-8-conv.c \
tls2.c tls_o.c tls_g.c \
turn.c ppolicy.c dds.c txn.c ldap_sync.c stctrl.c \
2018-11-18 10:33:41 +08:00
assertion.c deref.c ldifutil.c ldif.c fetch.c lbase64.c \
2020-05-14 00:54:50 +08:00
msctrl.c psearchctrl.c threads.c rdwr.c tpool.c rq.c \
thr_posix.c thr_thr.c thr_nt.c thr_pth.c thr_debug.c \
account_usability.c
2004-03-13 05:22:32 +08:00
OBJS = 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 \
sasl.lo sbind.lo unbind.lo cancel.lo \
filter.lo free.lo sort.lo passwd.lo whoami.lo vc.lo \
getdn.lo getentry.lo getattr.lo getvalues.lo addentry.lo \
2006-01-09 13:25:43 +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 \
charray.lo os-local.lo dnssrv.lo utf-8.lo utf-8-conv.lo \
tls2.lo tls_o.lo tls_g.lo \
turn.lo ppolicy.lo dds.lo txn.lo ldap_sync.lo stctrl.lo \
2018-11-18 10:33:41 +08:00
assertion.lo deref.lo ldifutil.lo ldif.lo fetch.lo lbase64.lo \
2020-05-14 00:54:50 +08:00
msctrl.lo psearchctrl.lo threads.lo rdwr.lo tpool.lo rq.lo \
thr_posix.lo thr_thr.lo thr_nt.lo thr_pth.lo thr_debug.lo \
account_usability.lo
1998-10-25 09:41:42 +08:00
LDAP_INCDIR= ../../include
LDAP_LIBDIR= ../../libraries
1998-10-25 09:41:42 +08:00
LIB_DEFS = -DLDAP_LIBRARY
XLIBS = $(LIBRARY) $(LDAP_LIBLBER_LA) $(LDAP_LIBLUTIL_A)
2001-12-07 12:03:25 +08:00
XXLIBS = $(SECURITY_LIBS) $(LUTIL_LIBS)
2002-05-18 07:41:26 +08:00
NT_LINK_LIBS = $(LDAP_LIBLBER_LA) $(AC_LIBS) $(SECURITY_LIBS)
UNIX_LINK_LIBS = $(LDAP_LIBLBER_LA) $(AC_LIBS) $(SECURITY_LIBS) $(LTHREAD_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)
2006-09-23 19:44:16 +08:00
urltest: $(XLIBS) urltest.o
$(LTLINK) -o $@ urltest.o $(LIBS)
1998-10-25 09:41:42 +08:00
2002-08-08 11:01:14 +08:00
CFFILES=ldap.conf
install-local: $(CFFILES) FORCE
-$(MKDIR) $(DESTDIR)$(libdir)
$(LTINSTALL) $(INSTALLFLAGS) -m 644 $(LIBRARY) $(DESTDIR)$(libdir)
$(LTFINISH) $(DESTDIR)$(libdir)
-$(MKDIR) $(DESTDIR)$(sysconfdir)
1998-10-25 09:41:42 +08:00
@for i in $(CFFILES); do \
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" ; \
1998-10-25 09:41:42 +08:00
fi; \
$(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/$$i $(DESTDIR)$(sysconfdir)/$$i.default; \
1998-10-25 09:41:42 +08:00
done