mirror of
https://github.com/brl/mutter.git
synced 2025-02-09 10:04:08 +00:00
![Alejandro Piñeiro](/assets/img/avatar_default.png)
http://bugzilla.clutter-project.org/show_bug.cgi?id=2099 Signed-off-by: Emmanuele Bassi <ebassi@linux.intel.com>
29 lines
538 B
Makefile
29 lines
538 B
Makefile
SUBDIRS = accessibility data interactive micro-bench tools
|
|
|
|
if BUILD_TESTS
|
|
SUBDIRS += conform
|
|
endif
|
|
|
|
DIST_SUBDIRS = data conform interactive micro-bench tools
|
|
|
|
EXTRA_DIST = README
|
|
|
|
if BUILD_TESTS
|
|
test conform:
|
|
( cd ./conform && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
|
|
|
|
test-report full-report:
|
|
( cd ./conform && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
|
|
else
|
|
test conform:
|
|
@true
|
|
|
|
test-report full-report:
|
|
@true
|
|
endif # BUILD_TESTS
|
|
|
|
.PHONY: test conform test-report full-report
|
|
|
|
# run make test as part of make check
|
|
check-local: test
|