1999-09-02 08:56:32 +08:00
|
|
|
# $OpenLDAP$
|
2002-01-05 05:17:25 +08:00
|
|
|
## Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
|
1999-02-22 19:28:01 +08:00
|
|
|
## COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
##
|
|
|
|
## tests Makefile.in for OpenLDAP
|
|
|
|
|
1999-10-28 15:31:59 +08:00
|
|
|
UNIX_PRGS = slapd-tester slapd-search slapd-read slapd-addel
|
|
|
|
PROGRAMS = $(@PLAT@_PRGS)
|
|
|
|
|
1999-02-22 19:28:01 +08:00
|
|
|
SRCS = slapd-tester.c slapd-search.c slapd-read.c slapd-addel.c
|
|
|
|
|
|
|
|
LDAP_INCDIR= ../../include
|
|
|
|
LDAP_LIBDIR= ../../libraries
|
|
|
|
|
2002-02-11 06:42:51 +08:00
|
|
|
XLIBS = $(LDAP_LIBLDAP_LA) $(LDAP_LIBLBER_LA)
|
1999-08-05 10:25:19 +08:00
|
|
|
XXLIBS = $(SECURITY_LIBS) $(LUTIL_LIBS)
|
1999-02-22 19:28:01 +08:00
|
|
|
|
|
|
|
# build-tools: FORCE
|
|
|
|
# $(MAKE) $(MFLAGS) load-tools
|
|
|
|
|
|
|
|
# load-tools: $(PROGRAMS)
|
|
|
|
|
2002-02-11 06:42:51 +08:00
|
|
|
slapd-tester: slapd-tester.o $(XLIBS)
|
1999-08-20 02:36:10 +08:00
|
|
|
$(LTLINK) -o $@ slapd-tester.o $(LIBS)
|
1999-02-22 19:28:01 +08:00
|
|
|
|
2002-02-11 06:42:51 +08:00
|
|
|
slapd-search: slapd-search.o $(XLIBS)
|
1999-02-22 19:28:01 +08:00
|
|
|
$(LTLINK) -o $@ slapd-search.o $(LIBS)
|
|
|
|
|
2002-02-11 06:42:51 +08:00
|
|
|
slapd-read: slapd-read.o $(XLIBS)
|
1999-02-22 19:28:01 +08:00
|
|
|
$(LTLINK) -o $@ slapd-read.o $(LIBS)
|
|
|
|
|
2002-02-11 06:42:51 +08:00
|
|
|
slapd-addel: slapd-addel.o $(XLIBS)
|
1999-02-22 19:28:01 +08:00
|
|
|
$(LTLINK) -o $@ slapd-addel.o $(LIBS)
|
|
|
|
|
|
|
|
|