2003-11-26 10:58:56 +08:00
|
|
|
# Makefile.in for tests
|
1999-09-02 08:52:43 +08:00
|
|
|
# $OpenLDAP$
|
2003-11-29 04:00:23 +08:00
|
|
|
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
##
|
2005-01-02 04:49:32 +08:00
|
|
|
## Copyright 1998-2005 The OpenLDAP Foundation.
|
2003-11-26 10:58:56 +08:00
|
|
|
## All rights reserved.
|
1998-10-25 09:41:42 +08:00
|
|
|
##
|
2003-11-26 10:58:56 +08:00
|
|
|
## Redistribution and use in source and binary forms, with or without
|
|
|
|
## modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
## Public License.
|
|
|
|
##
|
|
|
|
## A copy of this license is available in the file LICENSE in the
|
|
|
|
## top-level directory of the distribution or, alternatively, at
|
|
|
|
## <http://www.OpenLDAP.org/license.html>.
|
|
|
|
|
2003-10-21 11:08:08 +08:00
|
|
|
RUN=./run
|
1999-02-22 19:28:01 +08:00
|
|
|
SUBDIRS= progs
|
2003-10-21 11:08:08 +08:00
|
|
|
|
2001-10-04 14:34:03 +08:00
|
|
|
BUILD_BDB=@BUILD_BDB@
|
2003-04-24 00:50:56 +08:00
|
|
|
BUILD_HDB=@BUILD_HDB@
|
|
|
|
BUILD_LDBM=@BUILD_LDBM@
|
2004-08-24 17:26:39 +08:00
|
|
|
BUILD_SQL=@BUILD_SQL@
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2003-10-13 17:56:25 +08:00
|
|
|
test tests:
|
|
|
|
@$(MAKE) bdb
|
|
|
|
@$(MAKE) hdb
|
|
|
|
@$(MAKE) ldbm
|
2004-08-24 17:26:39 +08:00
|
|
|
@$(MAKE) sql
|
2003-06-23 22:11:29 +08:00
|
|
|
|
2003-10-13 17:56:25 +08:00
|
|
|
bdb test-bdb: bdb-$(BUILD_BDB)
|
2003-10-10 20:11:22 +08:00
|
|
|
bdb-no:
|
2004-08-30 10:57:22 +08:00
|
|
|
@echo "run configure with --enable-bdb to run BDB tests"
|
2003-10-10 20:11:22 +08:00
|
|
|
|
2003-10-21 11:08:08 +08:00
|
|
|
bdb-yes bdb-mod: FORCE
|
2003-10-10 20:11:22 +08:00
|
|
|
@echo "Initiating LDAP tests for BDB..."
|
2003-10-21 11:08:08 +08:00
|
|
|
@$(RUN) -b bdb all
|
2003-10-10 20:11:22 +08:00
|
|
|
|
2003-10-13 17:56:25 +08:00
|
|
|
hdb test-hdb: hdb-$(BUILD_HDB)
|
2003-10-10 20:11:22 +08:00
|
|
|
hdb-no:
|
2004-08-30 10:57:22 +08:00
|
|
|
@echo "run configure with --enable-hdb to run HDB tests"
|
2003-10-10 20:11:22 +08:00
|
|
|
|
2003-10-21 11:08:08 +08:00
|
|
|
hdb-yes hdb-mod: FORCE
|
2003-10-10 20:11:22 +08:00
|
|
|
@echo "Initiating LDAP tests for HDB..."
|
2003-10-21 11:08:08 +08:00
|
|
|
@$(RUN) -b hdb all
|
2003-10-10 20:11:22 +08:00
|
|
|
|
2003-10-13 17:56:25 +08:00
|
|
|
ldbm test-ldbm: ldbm-$(BUILD_LDBM)
|
2003-10-10 20:11:22 +08:00
|
|
|
ldbm-no:
|
2004-08-30 10:57:22 +08:00
|
|
|
@echo "run configure with --enable-ldbm to run LDBM tests"
|
2003-10-10 20:11:22 +08:00
|
|
|
|
2003-10-21 11:08:08 +08:00
|
|
|
ldbm-yes ldbm-mod: FORCE
|
2003-10-10 20:11:22 +08:00
|
|
|
@echo "Initiating LDAP tests for LDBM..."
|
2003-10-21 11:08:08 +08:00
|
|
|
@$(RUN) -b ldbm all
|
1999-05-12 11:29:06 +08:00
|
|
|
|
2004-08-24 17:26:39 +08:00
|
|
|
sql test-sql: sql-$(BUILD_SQL)
|
|
|
|
sql-no:
|
2004-08-30 10:57:22 +08:00
|
|
|
@echo "run configure with --enable-sql to run SQL tests"
|
2004-08-24 17:26:39 +08:00
|
|
|
|
|
|
|
sql-yes sql-mod: FORCE
|
|
|
|
@echo "Initiating LDAP tests for SQL..."
|
|
|
|
@$(RUN) -b sql sql-all
|
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
clean-local: FORCE
|
2003-10-22 13:14:08 +08:00
|
|
|
-$(RM) -r testrun *leak *gmon *core
|
1998-10-25 09:41:42 +08:00
|
|
|
|
1998-11-22 14:24:59 +08:00
|
|
|
veryclean-local: FORCE
|
2005-01-14 08:11:21 +08:00
|
|
|
@-$(RM) run data schema ucdata
|
1998-10-25 09:41:42 +08:00
|
|
|
|