mutter/cogl/tests/Makefile.am
Florian Müllner 28c9b6e1d7 build: Namespace installed tests of private libraries
Currently our private cogl/clutter forks still install tests as
cogl/clutter, which conflicts with the original libraries.
2016-04-29 14:49:03 +02:00

32 lines
637 B
Makefile

SUBDIRS = conform
if UNIT_TESTS
SUBDIRS += unit
endif
SUBDIRS += micro-perf data
DIST_SUBDIRS = conform unit micro-perf data
EXTRA_DIST = README test-launcher.sh run-tests.sh
if UNIT_TESTS
test conform:
( cd ./conform && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
( cd ./unit && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
else
test conform:
( cd ./conform && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
endif
.PHONY: test conform
# run make test as part of make check
check-local: test
if ENABLE_INSTALLED_TESTS
insttestdir = $(libexecdir)/installed-tests/mutter-cogl
insttest_SCRIPTS = run-tests.sh
insttest_DATA = config.env
endif