]> git.sur5r.net Git - openldap/blob - tests/Makefile.in
3759f56e0e942d4c25a7d6c39739bb6e91e08e9e
[openldap] / tests / Makefile.in
1 # $OpenLDAP$
2 ## Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
3 ## COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4 ##
5 ## tests Makefile.in for OpenLDAP
6 RUN=./run
7 SUBDIRS= progs
8
9 BUILD_BDB=@BUILD_BDB@
10 BUILD_HDB=@BUILD_HDB@
11 BUILD_LDBM=@BUILD_LDBM@
12
13 test tests:
14         @$(MAKE) bdb
15         @$(MAKE) hdb
16         @$(MAKE) ldbm
17
18 bdb test-bdb:   bdb-$(BUILD_BDB)
19 bdb-no:
20         @echo "run configure with --enable-bdb"
21
22 bdb-yes bdb-mod: FORCE
23         @echo "Initiating LDAP tests for BDB..."
24         @$(RUN) -b bdb all
25
26 hdb test-hdb:   hdb-$(BUILD_HDB)
27 hdb-no:
28         @echo "run configure with --enable-hdb"
29
30 hdb-yes hdb-mod: FORCE
31         @echo "Initiating LDAP tests for HDB..."
32         @$(RUN) -b hdb all
33
34 ldbm test-ldbm: ldbm-$(BUILD_LDBM)
35 ldbm-no:
36         @echo "run configure with --enable-ldbm"
37
38 ldbm-yes ldbm-mod:      FORCE
39         @echo "Initiating LDAP tests for LDBM..."
40         @$(RUN) -b ldbm all
41
42 clean-local:    FORCE
43         -$(RM) -r testrun *leak *gmon *core
44
45 veryclean-local: FORCE
46         @-$(RM) data schema ucdata
47