mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
8227135f3b
Tests and documentation will follow separately. The mixer elements in the opengl plugin need to stay in -bad for now since they use GstVideoAggregator. https://bugzilla.gnome.org/show_bug.cgi?id=754094
63 lines
725 B
Makefile
63 lines
725 B
Makefile
if USE_OPENGL
|
|
GL_DIR = gl
|
|
endif
|
|
if USE_GLES2
|
|
GL_DIR = gl
|
|
endif
|
|
|
|
SUBDIRS = \
|
|
tag \
|
|
fft \
|
|
audio \
|
|
rtp \
|
|
sdp \
|
|
rtsp \
|
|
video \
|
|
pbutils \
|
|
riff \
|
|
app \
|
|
allocators \
|
|
$(GL_DIR)
|
|
|
|
DIST_SUBDIRS = \
|
|
tag \
|
|
fft \
|
|
audio \
|
|
rtp \
|
|
sdp \
|
|
rtsp \
|
|
video \
|
|
pbutils \
|
|
riff \
|
|
app \
|
|
allocators \
|
|
gl
|
|
|
|
noinst_HEADERS = gettext.h gst-i18n-app.h gst-i18n-plugin.h glib-compat-private.h
|
|
|
|
# dependencies:
|
|
audio: tag
|
|
|
|
riff: tag audio
|
|
|
|
rtsp: sdp
|
|
|
|
pbutils: video audio
|
|
|
|
rtp: audio
|
|
|
|
sdp: rtp
|
|
|
|
gl: video allocators
|
|
|
|
INDEPENDENT_SUBDIRS = \
|
|
tag audio fft video app
|
|
|
|
.PHONY: independent-subdirs $(INDEPENDENT_SUBDIRS)
|
|
|
|
independent-subdirs: $(INDEPENDENT_SUBDIRS)
|
|
|
|
$(INDEPENDENT_SUBDIRS):
|
|
$(MAKE) -C $@
|
|
|
|
all-recursive: independent-subdirs
|