mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
2889c67adf
Building tests/progs/*.c in the main build process. ==> Test-suite must be called by 'make test', or 'make test-bdb2'
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)
|
|
|
|
|