gstreamer/tests/Makefile.am
Thomas Vander Stichele c93648783a descend into tests
Original commit message from CVS:

* Makefile.am:
* configure.ac:
descend into tests
* docs/random/thomasvs/TODO:
* tests/Makefile.am:
* tests/README:
add a README
2005-11-30 16:39:04 +00:00

37 lines
545 B
Makefile

EXTRA_DIST = README
if BUILD_TESTS
## SUBDIRS_TESTS = tests testsuite
## FIXME: write tests from scratch
SUBDIRS_TESTS =
if HAVE_CHECK
SUBDIRS_CHECK = check
else
SUBDIRS_CHECK =
endif
else
SUBDIRS_TESTS =
SUBDIRS_CHECK =
endif
if BUILD_EXAMPLES
## FIXME: write examples from scratch
# SUBDIRS_EXAMPLES = examples
SUBDIRS_EXAMPLES =
else
SUBDIRS_EXAMPLES =
endif
SUBDIRS = \
benchmarks \
$(SUBDIRS_CHECK) \
misc \
$(SUBDIRS_TESTS) \
$(SUBDIRS_EXAMPLES)
# These are all the possible subdirs
DIST_SUBDIRS = \
benchmarks \
check \
misc