summaryrefslogtreecommitdiff
path: root/ext/Makefile.am
blob: 59fe8e656d47b88bb5dc58cab6bb54a448d8088d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
if USE_ALSA
ALSA_DIR=alsa
else
ALSA_DIR=
endif

if USE_CDPARANOIA
CDPARANOIA_DIR=cdparanoia
else
CDPARANOIA_DIR=
endif

if USE_LIBVISUAL
LIBVISUAL_DIR=libvisual
else
LIBVISUAL_DIR=
endif

if USE_OGG
OGG_DIR=ogg
else
OGG_DIR=
endif

if USE_OPUS
OPUS_DIR=opus
else
OPUS_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) \
  $(LIBVISUAL_DIR) \
  $(OGG_DIR) \
  $(OPUS_DIR) \
  $(PANGO_DIR) \
  $(THEORA_DIR) \
  $(VORBIS_DIR)

DIST_SUBDIRS = \
  alsa \
  cdparanoia \
  libvisual \
  ogg \
  opus \
  pango \
  theora \
  vorbis

include $(top_srcdir)/common/parallel-subdirs.mak