~oem-solutions-group/unity-2d/clutter-1.0

« back to all changes in this revision

Viewing changes to tests/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2010-03-21 13:27:56 UTC
  • mto: (2.1.3 experimental)
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20100321132756-nf8yd30yxo3zzwcm
Tags: upstream-1.2.2
ImportĀ upstreamĀ versionĀ 1.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SUBDIRS = data conform interactive micro-bench tools
 
1
SUBDIRS = data interactive micro-bench tools
 
2
 
 
3
if BUILD_TESTS
 
4
SUBDIRS += conform
 
5
endif
 
6
 
 
7
DIST_SUBDIRS = data conform interactive micro-bench tools
2
8
 
3
9
EXTRA_DIST = README
4
10
 
5
 
.PHONY: test conform
6
 
test conform:
7
 
        $(MAKE) -C ./conform test
8
 
.PHONY: test-report full-report
9
 
test-report full-report:
10
 
        $(MAKE) -C ./conform $(@)
 
11
if BUILD_TESTS
 
12
test conform:
 
13
        ( cd ./conform && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
 
14
 
 
15
test-report full-report:
 
16
        ( cd ./conform && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
 
17
else
 
18
test conform:
 
19
        @true
 
20
 
 
21
test-report full-report:
 
22
        @true
 
23
endif # BUILD_TESTS
 
24
 
 
25
.PHONY: test conform test-report full-report
11
26
 
12
27
# run make test as part of make check
13
28
check-local: test