1if USE_ALSA
2ALSA_DIR=alsa
3else
4ALSA_DIR=
5endif
6
7if USE_CDPARANOIA
8CDPARANOIA_DIR=cdparanoia
9else
10CDPARANOIA_DIR=
11endif
12
13if USE_GL
14GL_DIR=gl
15else
16GL_DIR=
17endif
18
19if USE_LIBVISUAL
20LIBVISUAL_DIR=libvisual
21else
22LIBVISUAL_DIR=
23endif
24
25if USE_OGG
26OGG_DIR=ogg
27else
28OGG_DIR=
29endif
30
31if USE_OPUS
32OPUS_DIR=opus
33else
34OPUS_DIR=
35endif
36
37if USE_PANGO
38PANGO_DIR = pango
39else
40PANGO_DIR =
41endif
42
43if USE_VORBIS
44VORBIS_DIR=vorbis
45endif
46
47if USE_IVORBIS
48VORBIS_DIR=vorbis
49endif
50
51if !USE_VORBIS
52if !USE_IVORBIS
53VORBIS_DIR=
54endif
55endif
56
57if USE_THEORA
58THEORA_DIR=theora
59else
60THEORA_DIR=
61endif
62
63SUBDIRS = \
64  $(ALSA_DIR) \
65  $(CDPARANOIA_DIR) \
66  $(GL_DIR) \
67  $(LIBVISUAL_DIR) \
68  $(OGG_DIR) \
69  $(OPUS_DIR) \
70  $(PANGO_DIR) \
71  $(THEORA_DIR) \
72  $(VORBIS_DIR)
73
74DIST_SUBDIRS = \
75  alsa \
76  cdparanoia \
77  gl \
78  libvisual \
79  ogg \
80  opus \
81  pango \
82  theora \
83  vorbis
84
85include $(top_srcdir)/common/parallel-subdirs.mak
86