build: build plugin and example directories in parallel if make -jN is used

We know our plugins and examples are independent of each other, so may
just as well build them in parallel. Makes the output a bit messy, but
that shouldn't be a problem and can easily be avoided with make -j1.
This commit is contained in:
Tim-Philipp Müller 2010-03-29 00:22:20 +01:00
parent 00aaae8189
commit e1f38a685b
5 changed files with 8 additions and 1 deletions

2
common

@ -1 +1 @@
Subproject commit c1d07dd16cdb95e2cc83ced327d33cebab0fcf3d
Subproject commit ba33d1f3cf0b9143963f13dd1ea05c93b1db8864

View file

@ -81,3 +81,5 @@ DIST_SUBDIRS = \
pango \
theora \
vorbis
include $(top_srcdir)/common/parallel-subdirs.mak

View file

@ -1,2 +1,4 @@
SUBDIRS = $(GST_PLUGINS_SELECTED)
DIST_SUBDIRS = $(GST_PLUGINS_ALL)
include $(top_srcdir)/common/parallel-subdirs.mak

View file

@ -26,3 +26,4 @@ DIST_SUBDIRS = \
ximage \
xvimage
include $(top_srcdir)/common/parallel-subdirs.mak

View file

@ -11,3 +11,5 @@ endif
SUBDIRS = app $(FT2_SUBDIRS) $(GIO_SUBDIRS) volume dynamic v4l overlay
DIST_SUBDIRS = app seek volume dynamic snapshot gio v4l overlay
include $(top_srcdir)/common/parallel-subdirs.mak