gstreamer/ext/Makefile.am
Tim-Philipp Müller e1f38a685b 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.
2010-03-29 00:26:59 +01:00

86 lines
925 B
Makefile

if USE_ALSA
ALSA_DIR=alsa
else
ALSA_DIR=
endif
if USE_CDPARANOIA
CDPARANOIA_DIR=cdparanoia
else
CDPARANOIA_DIR=
endif
if USE_GIO
GIO_DIR=gio
else
GIO_DIR=
endif
if USE_GNOME_VFS
GNOMEVFS_DIR=gnomevfs
else
GNOMEVFS_DIR=
endif
if USE_LIBVISUAL
LIBVISUAL_DIR=libvisual
else
LIBVISUAL_DIR=
endif
if USE_OGG
OGG_DIR=ogg
else
OGG_DIR=
endif
if USE_PANGO
PANGO_DIR = pango
else
PANGO_DIR =
endif
if USE_VORBIS
VORBIS_DIR=vorbis
endif
if USE_IVORBIS
VORBIS_DIR=vorbis
endif
if !USE_VORBIS
if !USE_IVORBIS
VORBIS_DIR=
endif
endif
if USE_THEORA
THEORA_DIR=theora
else
THEORA_DIR=
endif
SUBDIRS = \
$(ALSA_DIR) \
$(CDPARANOIA_DIR) \
$(GIO_DIR) \
$(GNOMEVFS_DIR) \
$(LIBVISUAL_DIR) \
$(OGG_DIR) \
$(PANGO_DIR) \
$(THEORA_DIR) \
$(VORBIS_DIR)
DIST_SUBDIRS = \
alsa \
cdparanoia \
gio \
gnomevfs \
libvisual \
ogg \
pango \
theora \
vorbis
include $(top_srcdir)/common/parallel-subdirs.mak