mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
22 lines
331 B
Makefile
22 lines
331 B
Makefile
if HAVE_GST_CHECK
|
|
CHECK_SUBDIRS= check
|
|
else
|
|
CHECK_SUBDIRS=
|
|
endif
|
|
|
|
if BUILD_EXAMPLES
|
|
EXAMPLES_SUBDIRS= examples
|
|
else
|
|
EXAMPLES_SUBDIRS=
|
|
endif
|
|
|
|
if BUILD_BENCHMARKS
|
|
BENCHMARKS_SUBDIR=benchmarks
|
|
else
|
|
BENCHMARKS_SUBDIR=
|
|
endif
|
|
|
|
SUBDIRS= $(CHECK_SUBDIRS) $(EXAMPLES_SUBDIRS) $(BENCHMARKS_SUBDIR)
|
|
|
|
DIST_SUBDIRS = check examples benchmarks
|
|
|