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.
This commit is contained in:
Tim-Philipp Müller 2010-03-29 10:47:31 +01:00
parent e1f38a685b
commit 93e408bdbb

View file

@ -28,3 +28,15 @@ 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