mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-07 18:14:35 +00:00
30 lines
814 B
Makefile
30 lines
814 B
Makefile
if USE_WAYLAND
|
|
WAYLAND_DIR=wayland
|
|
endif
|
|
|
|
if USE_OPENCV
|
|
OPENCV_DIR=opencv
|
|
endif
|
|
|
|
SUBDIRS = uridownloader adaptivedemux interfaces basecamerabinsrc codecparsers \
|
|
insertbin mpegts audio sctp player isoff webrtc $(WAYLAND_DIR) \
|
|
$(OPENCV_DIR)
|
|
|
|
noinst_HEADERS = gst-i18n-plugin.h gettext.h glib-compat-private.h
|
|
DIST_SUBDIRS = uridownloader adaptivedemux interfaces basecamerabinsrc \
|
|
codecparsers insertbin mpegts wayland opencv audio player isoff sctp webrtc
|
|
|
|
adaptivedemux: uridownloader
|
|
|
|
INDEPENDENT_SUBDIRS = \
|
|
interfaces basecamerabinsrc codecparsers insertbin uridownloader \
|
|
mpegts player isoff sctp $(WAYLAND_DIR) $(OPENCV_DIR)
|
|
|
|
.PHONY: independent-subdirs $(INDEPENDENT_SUBDIRS)
|
|
|
|
independent-subdirs: $(INDEPENDENT_SUBDIRS)
|
|
|
|
$(INDEPENDENT_SUBDIRS):
|
|
$(MAKE) -C $@
|
|
|
|
all-recursive: independent-subdirs
|