From 93e408bdbb1e470f1f2993ecf2a795c5b09bfe53 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 29 Mar 2010 10:47:31 +0100 Subject: [PATCH] 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. --- gst-libs/gst/Makefile.am | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/gst-libs/gst/Makefile.am b/gst-libs/gst/Makefile.am index 16114d1..fac48ab 100644 --- a/gst-libs/gst/Makefile.am +++ b/gst-libs/gst/Makefile.am @@ -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 -- 2.7.4