openldap/tests/Makefile.in

68 lines
1.5 KiB
Makefile
Raw Normal View History

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/>.
##
2007-01-03 04:00:42 +08:00
## Copyright 1998-2007 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>.
RUN=./run
SUBDIRS= progs
BUILD_BDB=@BUILD_BDB@
BUILD_HDB=@BUILD_HDB@
BUILD_SQL=@BUILD_SQL@
# test primary backends (default)
2003-10-13 17:56:25 +08:00
test tests:
@$(MAKE) bdb
@$(MAKE) hdb
# test all backends
alltests: tests
@$(MAKE) sql
2003-10-13 17:56:25 +08:00
bdb test-bdb: bdb-$(BUILD_BDB)
bdb-no:
2004-08-30 10:57:22 +08:00
@echo "run configure with --enable-bdb to run BDB tests"
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:
2004-08-30 10:57:22 +08:00
@echo "run configure with --enable-hdb to run HDB tests"
hdb-yes hdb-mod: FORCE
@echo "Initiating LDAP tests for HDB..."
@$(RUN) -b hdb all
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"
sql-yes sql-mod: FORCE
@echo "Initiating LDAP tests for SQL..."
@$(RUN) -b sql sql-all
2005-12-21 03:46:07 +08:00
regressions: FORCE
@echo "Testing (available) ITS regressions"
@$(RUN) its-all
its: regressions
1998-10-25 09:41:42 +08:00
clean-local: FORCE
-$(RM) -r testrun configpw configpw.conf *leak *gmon *core
1998-10-25 09:41:42 +08:00
veryclean-local: FORCE
@-$(RM) run testdata schema ucdata
1998-10-25 09:41:42 +08:00