openldap/tests/Makefile.in

80 lines
2.2 KiB
Makefile
Raw Normal View History

1999-09-02 08:52:43 +08:00
# $OpenLDAP$
2003-01-04 04:20:47 +08:00
## Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
1998-10-25 09:41:42 +08:00
## COPYING RESTRICTIONS APPLY, see COPYRIGHT file
##
## tests Makefile.in for OpenLDAP
SUBDIRS= progs
BUILD_BDB=@BUILD_BDB@
BUILD_HDB=@BUILD_HDB@
BUILD_LDBM=@BUILD_LDBM@
BUILD_MONITOR=@BUILD_MONITOR@
BUILD_CACHE=@BUILD_CACHE@
2003-10-13 17:56:25 +08:00
test tests:
@$(MAKE) bdb
@$(MAKE) hdb
@$(MAKE) ldbm
links: data schema ucdata
data:
2000-09-28 12:10:35 +08:00
@-$(LN_S) $(srcdir)/data .
schema:
2000-09-28 12:10:35 +08:00
@-$(LN_S) $(top_srcdir)/servers/slapd/schema .
ucdata:
@-$(LN_S) ../libraries/liblunicode ucdata
2000-09-28 12:10:35 +08:00
dirs: test-db test-repl
test-db test-repl:
@$(MKDIR) $@
2003-10-13 17:56:25 +08:00
bdb test-bdb: bdb-$(BUILD_BDB)
bdb-no:
@echo "run configure with --enable-bdb"
bdb-yes bdb-mod: links dirs FORCE
@echo "Initiating LDAP tests for BDB..."
@MONITORDB=$(BUILD_MONITOR) PROXYCACHE=$(BUILD_CACHE) BACKENDTYPE=$(BUILD_BDB) $(srcdir)/scripts/all $(srcdir) bdb bdb
2003-10-13 17:56:25 +08:00
hdb test-hdb: hdb-$(BUILD_HDB)
hdb-no:
@echo "run configure with --enable-hdb"
hdb-yes hdb-mod: links dirs FORCE
@echo "Initiating LDAP tests for HDB..."
@MONITORDB=$(BUILD_MONITOR) PROXYCACHE=$(BUILD_CACHE) BACKENDTYPE=$(BUILD_HDB) $(srcdir)/scripts/all $(srcdir) hdb hdb
2003-10-13 17:56:25 +08:00
ldbm test-ldbm: ldbm-$(BUILD_LDBM)
ldbm-no:
@echo "run configure with --enable-ldbm"
ldbm-yes ldbm-mod: links dirs FORCE
@echo "Initiating LDAP tests for LDBM..."
@MONITORDB=$(BUILD_MONITOR); PROXYCACHE=$(BUILD_CACHE); \
BACKENDTYPE=$(BUILD_LDBM); export MONITORDB PROXYCACHE BACKENDTYPE; \
if test "$(BUILD_BDB)" != "no"; then \
$(srcdir)/scripts/all $(srcdir) ldbm bdb ; \
else \
if test "$(BUILD_HDB)" != "no"; then \
$(srcdir)/scripts/all $(srcdir) ldbm hdb ; \
else \
$(srcdir)/scripts/all $(srcdir) ldbm no ; \
fi ; \
fi
1998-10-25 09:41:42 +08:00
2003-10-13 17:56:25 +08:00
passwd test-passwd: links dirs FORCE
@echo "Initiating LDAP tests..."
@$(srcdir)/scripts/passwd-search $(srcdir) passwd
test-nis-schema: test-nis-schema-ldbm
test-nis-schema-ldbm: links dirs FORCE
@echo "Initiating LDAP server with NIS schema & ldbm backend..."; \
$(srcdir)/scripts/startup_nis_ldap_server.sh $(srcdir) ldbm
1998-10-25 09:41:42 +08:00
clean-local: FORCE
-$(RM) -r test-db/[!C]* test-repl/[!C]* test-cache/[!C]* *leak *gmon *core
1998-10-25 09:41:42 +08:00
veryclean-local: FORCE
2000-09-04 07:48:35 +08:00
@-$(RM) data schema ucdata
-$(RM) -r test-db test-repl test-cache
1998-10-25 09:41:42 +08:00