mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
e1f38a685b
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.
29 lines
318 B
Makefile
29 lines
318 B
Makefile
if USE_GST_V4L
|
|
V4L_DIR=v4l
|
|
else
|
|
V4L_DIR=
|
|
endif
|
|
|
|
if USE_X
|
|
XIMAGE_DIR=ximage
|
|
else
|
|
XIMAGE_DIR=
|
|
endif
|
|
|
|
if USE_XVIDEO
|
|
XVIMAGE_DIR=xvimage
|
|
else
|
|
XVIMAGE_DIR=
|
|
endif
|
|
|
|
SUBDIRS = \
|
|
$(XIMAGE_DIR) \
|
|
$(XVIMAGE_DIR) \
|
|
$(V4L_DIR)
|
|
|
|
DIST_SUBDIRS = \
|
|
v4l \
|
|
ximage \
|
|
xvimage
|
|
|
|
include $(top_srcdir)/common/parallel-subdirs.mak
|