mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
f5ef28a055
need liblutil for lutil_getopt must quote args with embedded whitespace must track child processes in order to wait()
37 lines
882 B
Makefile
37 lines
882 B
Makefile
# $OpenLDAP$
|
|
## Copyright 1998-2002 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
|
|
|
|
NT_XLIBS = $(LDAP_LIBLUTIL_A)
|
|
|
|
XLIBS = $(LDAP_LIBLDAP_LA) $(LDAP_LIBLBER_LA) $(@PLAT@_XLIBS)
|
|
XXLIBS = $(SECURITY_LIBS) $(LUTIL_LIBS)
|
|
|
|
# build-tools: FORCE
|
|
# $(MAKE) $(MFLAGS) load-tools
|
|
|
|
# load-tools: $(PROGRAMS)
|
|
|
|
slapd-tester: slapd-tester.o $(XLIBS)
|
|
$(LTLINK) -o $@ slapd-tester.o $(LIBS)
|
|
|
|
slapd-search: slapd-search.o $(XLIBS)
|
|
$(LTLINK) -o $@ slapd-search.o $(LIBS)
|
|
|
|
slapd-read: slapd-read.o $(XLIBS)
|
|
$(LTLINK) -o $@ slapd-read.o $(LIBS)
|
|
|
|
slapd-addel: slapd-addel.o $(XLIBS)
|
|
$(LTLINK) -o $@ slapd-addel.o $(LIBS)
|
|
|
|
|