mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
28 lines
343 B
Makefile
28 lines
343 B
Makefile
if BUILD_EXAMPLES
|
|
SUBDIRS_EXAMPLES = examples
|
|
else
|
|
SUBDIRS_EXAMPLES =
|
|
endif
|
|
|
|
if HAVE_GST_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 \
|
|
files \
|
|
icles
|