gstreamer/tests/Makefile.am
Michal Benes 1ea1600a5a tests/Makefile.am: Don't try to build tests in tests/icles if we don't have X (#323852)
Original commit message from CVS:
Patch by: Michal Benes  <michal dot benes at xeris dot cz>
* tests/Makefile.am:
Don't try to build tests in tests/icles if we
don't have X (#323852)
2006-03-16 20:01:03 +00:00

28 lines
328 B
Makefile

if BUILD_EXAMPLES
SUBDIRS_EXAMPLES = examples
else
SUBDIRS_EXAMPLES =
endif
if HAVE_CHECK
SUBDIRS_CHECK = check
else
SUBDIRS_CHECK =
endif
if USE_X
SUBDIRS_ICLES = icles
else
SUBDIRS_ICLES =
endif
SUBDIRS = \
$(SUBDIRS_CHECK) \
$(SUBDIRS_EXAMPLES) \
$(SUBDIRS_ICLES)
DIST_SUBDIRS = \
check \
examples \
icles