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