mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 10:31:05 +00:00
fb6d09055a
Conflicts: ext/alsa/gstalsadeviceprobe.c ext/alsa/gstalsamixer.c ext/pango/gsttextoverlay.c ext/pango/gsttextoverlay.h gst-libs/gst/audio/gstaudiobasesink.c gst-libs/gst/audio/gstaudioringbuffer.c gst-libs/gst/audio/gstaudiosrc.c gst-libs/gst/video/Makefile.am gst-libs/gst/video/video.c gst/encoding/gststreamcombiner.c gst/encoding/gststreamsplitter.c gst/playback/gstplaybasebin.c gst/playback/gststreamsynchronizer.c gst/playback/gstsubtitleoverlay.c gst/playback/gsturidecodebin.c sys/xvimage/xvimagesink.c tests/examples/Makefile.am win32/common/libgstvideo.def Video overlay composition disabled for now, needs porting to buffer meta.
38 lines
665 B
Makefile
38 lines
665 B
Makefile
# The interfaces directory has to be built before the others,
|
|
# otherwise some generated header files will be missing for the
|
|
# plugins in the other directories.
|
|
SUBDIRS = \
|
|
interfaces \
|
|
tag \
|
|
fft \
|
|
rtp \
|
|
sdp \
|
|
rtsp \
|
|
video \
|
|
audio \
|
|
pbutils \
|
|
riff \
|
|
app
|
|
|
|
noinst_HEADERS = gettext.h gst-i18n-plugin.h glib-compat-private.h
|
|
|
|
# dependencies:
|
|
audio: interfaces tag
|
|
|
|
riff: tag audio
|
|
|
|
rtsp: sdp
|
|
|
|
pbutils: video audio
|
|
|
|
INDEPENDENT_SUBDIRS = \
|
|
interfaces tag audio fft rtp sdp video app
|
|
|
|
.PHONY: independent-subdirs $(INDEPENDENT_SUBDIRS)
|
|
|
|
independent-subdirs: $(INDEPENDENT_SUBDIRS)
|
|
|
|
$(INDEPENDENT_SUBDIRS):
|
|
$(MAKE) -C $@
|
|
|
|
all-recursive: independent-subdirs
|