mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
8a1fa31c67
It's useful enough already to be used in other elements for audio aggregation, let's give people the opportunity to use it and give it some API testing. https://bugzilla.gnome.org/show_bug.cgi?id=760733
36 lines
838 B
Makefile
36 lines
838 B
Makefile
|
|
if USE_OPENGL
|
|
GL_DIR = gl
|
|
endif
|
|
if USE_GLES2
|
|
GL_DIR = gl
|
|
endif
|
|
|
|
if USE_WAYLAND
|
|
WAYLAND_DIR=wayland
|
|
endif
|
|
|
|
SUBDIRS = uridownloader adaptivedemux interfaces basecamerabinsrc codecparsers \
|
|
insertbin mpegts base video audio player $(GL_DIR) $(WAYLAND_DIR)
|
|
|
|
noinst_HEADERS = gst-i18n-plugin.h gettext.h glib-compat-private.h
|
|
DIST_SUBDIRS = uridownloader adaptivedemux interfaces gl basecamerabinsrc \
|
|
codecparsers insertbin mpegts wayland base video audio player
|
|
|
|
#dependencies
|
|
video, audio: base
|
|
|
|
adaptivedemux: uridownloader
|
|
|
|
INDEPENDENT_SUBDIRS = \
|
|
interfaces basecamerabinsrc codecparsers insertbin uridownloader \
|
|
mpegts base player $(GL_DIR) $(WAYLAND_DIR)
|
|
|
|
.PHONY: independent-subdirs $(INDEPENDENT_SUBDIRS)
|
|
|
|
independent-subdirs: $(INDEPENDENT_SUBDIRS)
|
|
|
|
$(INDEPENDENT_SUBDIRS):
|
|
$(MAKE) -C $@
|
|
|
|
all-recursive: independent-subdirs
|