1999-09-01 20:52:43 -04:00
|
|
|
# $OpenLDAP$
|
2003-01-03 15:20:47 -05:00
|
|
|
## Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
|
1998-10-24 21:41:42 -04:00
|
|
|
## COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
|
##
|
|
|
|
|
## tests Makefile.in for OpenLDAP
|
2003-10-20 23:08:08 -04:00
|
|
|
RUN=./run
|
1999-02-22 06:28:01 -05:00
|
|
|
SUBDIRS= progs
|
2003-10-20 23:08:08 -04:00
|
|
|
|
2001-10-04 02:34:03 -04:00
|
|
|
BUILD_BDB=@BUILD_BDB@
|
2003-04-23 12:50:56 -04:00
|
|
|
BUILD_HDB=@BUILD_HDB@
|
|
|
|
|
BUILD_LDBM=@BUILD_LDBM@
|
1999-02-15 05:49:20 -05:00
|
|
|
|
2003-10-13 05:56:25 -04:00
|
|
|
test tests:
|
|
|
|
|
@$(MAKE) bdb
|
|
|
|
|
@$(MAKE) hdb
|
|
|
|
|
@$(MAKE) ldbm
|
2003-06-23 10:11:29 -04:00
|
|
|
|
2003-10-13 05:56:25 -04:00
|
|
|
bdb test-bdb: bdb-$(BUILD_BDB)
|
2003-10-10 08:11:22 -04:00
|
|
|
bdb-no:
|
|
|
|
|
@echo "run configure with --enable-bdb"
|
|
|
|
|
|
2003-10-20 23:08:08 -04:00
|
|
|
bdb-yes bdb-mod: FORCE
|
2003-10-10 08:11:22 -04:00
|
|
|
@echo "Initiating LDAP tests for BDB..."
|
2003-10-20 23:08:08 -04:00
|
|
|
@$(RUN) -b bdb all
|
2003-10-10 08:11:22 -04:00
|
|
|
|
2003-10-13 05:56:25 -04:00
|
|
|
hdb test-hdb: hdb-$(BUILD_HDB)
|
2003-10-10 08:11:22 -04:00
|
|
|
hdb-no:
|
|
|
|
|
@echo "run configure with --enable-hdb"
|
|
|
|
|
|
2003-10-20 23:08:08 -04:00
|
|
|
hdb-yes hdb-mod: FORCE
|
2003-10-10 08:11:22 -04:00
|
|
|
@echo "Initiating LDAP tests for HDB..."
|
2003-10-20 23:08:08 -04:00
|
|
|
@$(RUN) -b hdb all
|
2003-10-10 08:11:22 -04:00
|
|
|
|
2003-10-13 05:56:25 -04:00
|
|
|
ldbm test-ldbm: ldbm-$(BUILD_LDBM)
|
2003-10-10 08:11:22 -04:00
|
|
|
ldbm-no:
|
|
|
|
|
@echo "run configure with --enable-ldbm"
|
|
|
|
|
|
2003-10-20 23:08:08 -04:00
|
|
|
ldbm-yes ldbm-mod: FORCE
|
2003-10-10 08:11:22 -04:00
|
|
|
@echo "Initiating LDAP tests for LDBM..."
|
2003-10-20 23:08:08 -04:00
|
|
|
@$(RUN) -b ldbm all
|
1999-05-11 23:29:06 -04:00
|
|
|
|
1998-10-24 21:41:42 -04:00
|
|
|
clean-local: FORCE
|
2003-10-22 01:14:08 -04:00
|
|
|
-$(RM) -r testrun *leak *gmon *core
|
1998-10-24 21:41:42 -04:00
|
|
|
|
1998-11-22 01:24:59 -05:00
|
|
|
veryclean-local: FORCE
|
2000-09-03 19:48:35 -04:00
|
|
|
@-$(RM) data schema ucdata
|
1998-10-24 21:41:42 -04:00
|
|
|
|