mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-13 17:55:30 +00:00
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:
parent
00aaae8189
commit
e1f38a685b
5 changed files with 8 additions and 1 deletions
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit c1d07dd16cdb95e2cc83ced327d33cebab0fcf3d
|
Subproject commit ba33d1f3cf0b9143963f13dd1ea05c93b1db8864
|
|
@ -81,3 +81,5 @@ DIST_SUBDIRS = \
|
||||||
pango \
|
pango \
|
||||||
theora \
|
theora \
|
||||||
vorbis
|
vorbis
|
||||||
|
|
||||||
|
include $(top_srcdir)/common/parallel-subdirs.mak
|
||||||
|
|
|
@ -1,2 +1,4 @@
|
||||||
SUBDIRS = $(GST_PLUGINS_SELECTED)
|
SUBDIRS = $(GST_PLUGINS_SELECTED)
|
||||||
DIST_SUBDIRS = $(GST_PLUGINS_ALL)
|
DIST_SUBDIRS = $(GST_PLUGINS_ALL)
|
||||||
|
|
||||||
|
include $(top_srcdir)/common/parallel-subdirs.mak
|
||||||
|
|
|
@ -26,3 +26,4 @@ DIST_SUBDIRS = \
|
||||||
ximage \
|
ximage \
|
||||||
xvimage
|
xvimage
|
||||||
|
|
||||||
|
include $(top_srcdir)/common/parallel-subdirs.mak
|
||||||
|
|
|
@ -11,3 +11,5 @@ endif
|
||||||
SUBDIRS = app $(FT2_SUBDIRS) $(GIO_SUBDIRS) volume dynamic v4l overlay
|
SUBDIRS = app $(FT2_SUBDIRS) $(GIO_SUBDIRS) volume dynamic v4l overlay
|
||||||
|
|
||||||
DIST_SUBDIRS = app seek volume dynamic snapshot gio v4l overlay
|
DIST_SUBDIRS = app seek volume dynamic snapshot gio v4l overlay
|
||||||
|
|
||||||
|
include $(top_srcdir)/common/parallel-subdirs.mak
|
||||||
|
|
Loading…
Reference in a new issue