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