openldap/tests/Makefile.in

79 lines
2.3 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@
test: tests
tests: bdb hdb ldbm
2000-09-28 12:10:35 +08:00
bdb: test-bdb
test-bdb: FORCE
@-$(LN_S) $(srcdir)/data .
@-$(LN_S) $(top_srcdir)/servers/slapd/schema .
@-$(LN_S) ../libraries/liblunicode ucdata
@if test "$(BUILD_BDB)" != "no"; then \
2000-09-28 12:10:35 +08:00
echo "Initiating LDAP tests for BDB..." ; \
$(MKDIR) test-db test-repl || true; \
$(srcdir)/scripts/all $(srcdir) bdb $(BUILD_BDB) $(BUILD_MONITOR) ; \
2000-09-28 12:10:35 +08:00
else \
echo "run configure with --enable-bdb" ; \
fi
hdb: test-hdb
test-hdb: FORCE
@-$(LN_S) $(srcdir)/data .
@-$(LN_S) $(top_srcdir)/servers/slapd/schema .
@-$(LN_S) ../libraries/liblunicode ucdata
@if test "$(BUILD_HDB)" != "no" ; then \
echo "Initiating LDAP tests for HDB..." ; \
$(MKDIR) test-db test-repl || true; \
$(srcdir)/scripts/all $(srcdir) hdb $(BUILD_HDB) $(BUILD_MONITOR) ; \
else \
echo "run configure with --enable-hdb" ; \
fi
2000-06-06 09:23:17 +08:00
ldbm: test-ldbm
test-ldbm: FORCE
2000-06-07 03:55:26 +08:00
@-$(LN_S) $(srcdir)/data .
@-$(LN_S) $(top_srcdir)/servers/slapd/schema .
@-$(LN_S) ../libraries/liblunicode ucdata
@if test "$(BUILD_LDBM)" != "no"; then \
2000-06-06 09:23:17 +08:00
echo "Initiating LDAP tests for LDBM..." ; \
$(MKDIR) test-db test-repl || true; \
$(srcdir)/scripts/all $(srcdir) ldbm $(BUILD_LDBM) $(BUILD_MONITOR); \
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
2000-06-07 03:55:26 +08:00
@-$(LN_S) $(srcdir)/data .
@-$(LN_S) $(top_srcdir)/servers/slapd/schema .
@-$(LN_S) ../libraries/liblunicode ucdata
@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:
2000-06-07 03:55:26 +08:00
@-$(LN_S) $(srcdir)/data .
@-$(LN_S) $(top_srcdir)/servers/slapd/schema .
@-$(LN_S) ../libraries/liblunicode ucdata
@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
2000-06-26 13:36:39 +08:00
-$(RM) -r test-db/[!C]* test-repl/[!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
2000-06-11 02:47:27 +08:00
-$(RM) -r test-db test-repl
1998-10-25 09:41:42 +08:00