mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-21 05:26:23 +00:00
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:
parent
e1f38a685b
commit
93e408bdbb
1 changed files with 12 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue