gstreamer/gst-libs/gst/Makefile.am
Tim-Philipp Müller 93e408bdbb gst-libs: build independent sub-directories in parallel if make -jN is used
Build those libraries that don't depend on any other gst-plugins-base
libraries in parallel if make -jN is used.
2010-03-29 10:47:31 +01:00

43 lines
747 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 \
audio \
cdda \
fft \
floatcast \
netbuffer \
pbutils \
riff \
rtp \
sdp \
rtsp \
video \
app
noinst_HEADERS = gettext.h gst-i18n-plugin.h
# dependencies:
audio: interfaces
cdda: tag
riff: tag
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