openldap/tests/Makefile.in

47 lines
1.3 KiB
Makefile
Raw Normal View History

1999-09-02 08:52:43 +08:00
# $OpenLDAP$
2000-05-13 10:25:54 +08:00
## Copyright 1998-2000 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
2000-06-06 09:23:17 +08:00
BUILD_LDBM=@BUILD_LDBM@
test: tests
2000-06-06 09:23:17 +08:00
tests: ldbm
2000-06-06 09:23:17 +08:00
ldbm: test-ldbm
test-ldbm: FORCE
@-$(LN_S) $(srcdir)/data data
@-$(LN_S) $(top_srcdir)/servers/slapd/schema schema
2000-06-06 09:23:17 +08:00
@if test "$(BUILD_LDBM)" = "yes" ; then \
echo "Initiating LDAP tests for LDBM..." ; \
$(MKDIR) test-db test-repl || true; \
2000-06-06 09:23:17 +08:00
$(srcdir)/scripts/all $(srcdir) ldbm ; \
else \
2000-06-06 09:23:17 +08:00
echo "run configure with --enable-ldbm" ; \
fi
1998-10-25 09:41:42 +08:00
passwd: test-passwd
test-passwd: FORCE
@-$(LN_S) $(srcdir)/data data
@-$(LN_S) $(top_srcdir)/servers/slapd/schema schema
@echo "Initiating LDAP tests..."
@-$(MKDIR) test-db test-repl || true
@$(srcdir)/scripts/passwd-search $(srcdir) passwd
test-nis-schema: test-nis-schema-ldbm
test-nis-schema-ldbm:
@-$(LN_S) $(srcdir)/data data
@-$(LN_S) $(top_srcdir)/servers/slapd/schema schema
@echo "Initiating LDAP server with NIS schema & ldbm backend..."; \
$(MKDIR) test-db test-repl ; \
$(srcdir)/scripts/startup_nis_ldap_server.sh $(srcdir) ldbm
1998-10-25 09:41:42 +08:00
clean-local: FORCE
-$(RM) test-db/[!C]* test-repl/[!C]* *leak *gmon *core
1998-10-25 09:41:42 +08:00
veryclean-local: FORCE
@-$(RM) data schema
$(RM) -r test-db test-repl
1998-10-25 09:41:42 +08:00