gstreamer/gst-libs/gst/Makefile.am
Tim-Philipp Müller 0d98aa25b8 Work around deprecated thread API in glib master
Add private replacements for deprecated functions such as
g_mutex_new(), g_mutex_free(), g_cond_new() etc., mostly
to avoid the deprecation warnings. We'll change these
over to the new API once we depend on glib >= 2.32.

Replace g_thread_create() with g_thread_try_new().
2011-12-04 17:16:30 +00:00

43 lines
783 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.
# Also, the tag directory has to be built before the cdda directory.
SUBDIRS = \
interfaces \
tag \
cdda \
fft \
floatcast \
netbuffer \
rtp \
sdp \
rtsp \
video \
pbutils \
audio \
riff \
app
noinst_HEADERS = gettext.h gst-i18n-plugin.h glib-compat-private.h
# dependencies:
audio: interfaces pbutils
cdda: tag
riff: tag audio
rtsp: sdp
INDEPENDENT_SUBDIRS = \
interfaces tag fft floatcast netbuffer pbutils rtp sdp video app
.PHONY: independent-subdirs $(INDEPENDENT_SUBDIRS)
independent-subdirs: $(INDEPENDENT_SUBDIRS)
$(INDEPENDENT_SUBDIRS):
$(MAKE) -C $@
all-recursive: independent-subdirs