mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
32 lines
855 B
Makefile
32 lines
855 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 -llutil
|
||
|
|
||
|
# 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)
|
||
|
|
||
|
|