openldap/tests/Makefile.in

48 lines
940 B
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
RUN=./run
SUBDIRS= progs
BUILD_BDB=@BUILD_BDB@
BUILD_HDB=@BUILD_HDB@
BUILD_LDBM=@BUILD_LDBM@
2003-10-13 17:56:25 +08:00
test tests:
@$(MAKE) bdb
@$(MAKE) hdb
@$(MAKE) ldbm
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: FORCE
@echo "Initiating LDAP tests for BDB..."
@$(RUN) -b bdb all
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: FORCE
@echo "Initiating LDAP tests for HDB..."
@$(RUN) -b hdb all
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: FORCE
@echo "Initiating LDAP tests for LDBM..."
@$(RUN) -b ldbm all
1998-10-25 09:41:42 +08:00
clean-local: FORCE
-$(RM) -r testrun *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
1998-10-25 09:41:42 +08:00