mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
33 lines
882 B
Makefile
33 lines
882 B
Makefile
## Copyright 1998 The OpenLDAP Foundation, All Rights Reserved.
|
|
## COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
##
|
|
## tests Makefile.in for OpenLDAP
|
|
|
|
PROGRAMS = slapd-tester slapd-search slapd-read slapd-addel
|
|
SRCS = slapd-tester.c slapd-search.c slapd-read.c slapd-addel.c
|
|
|
|
LDAP_INCDIR= ../../include
|
|
LDAP_LIBDIR= ../../libraries
|
|
|
|
XLIBS = -lldap -llber
|
|
XXLIBS = $(KRB_LIBS) $(LUTIL_LIBS)
|
|
|
|
# build-tools: FORCE
|
|
# $(MAKE) $(MFLAGS) load-tools
|
|
|
|
# load-tools: $(PROGRAMS)
|
|
|
|
slapd-tester: slapd-tester.o
|
|
$(LTLINK) -o $@ slapd-tester.o
|
|
|
|
slapd-search: slapd-search.o $(LDAP_LIBLBER_DEPEND) $(LDAP_LIBLDAP_DEPEND)
|
|
$(LTLINK) -o $@ slapd-search.o $(LIBS)
|
|
|
|
slapd-read: slapd-read.o $(LDAP_LIBLBER_DEPEND) $(LDAP_LIBLDAP_DEPEND)
|
|
$(LTLINK) -o $@ slapd-read.o $(LIBS)
|
|
|
|
slapd-addel: slapd-addel.o $(LDAP_LIBLBER_DEPEND) $(LDAP_LIBLDAP_DEPEND)
|
|
$(LTLINK) -o $@ slapd-addel.o $(LIBS)
|
|
|
|
|