blob: c158139ec730225621652a730e75a568f817d9aa (
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
|
#
# Makefile.am
#
# Author: Juan A. Suarez Romero <jasuarez@igalia.com>
#
# Copyright (C) 2013 Igalia S.L.
include $(top_srcdir)/gtester.mk
SUBDIRS =
if DLEYNA_PLUGIN
SUBDIRS += dleyna
endif
if LOCALMETADATA_PLUGIN
if LUA_FACTORY_PLUGIN
SUBDIRS += local-metadata
endif
endif
if LUA_FACTORY_PLUGIN
SUBDIRS += lua-factory spotify-cover
endif
if TMDB_PLUGIN
SUBDIRS += tmdb
endif
if THETVDB_PLUGIN
SUBDIRS += thetvdb
endif
if VIMEO_PLUGIN
SUBDIRS += vimeo
endif
DIST_SUBDIRS = \
dleyna \
spotify-cover \
local-metadata \
lua-factory \
tmdb \
thetvdb \
vimeo
-include $(top_srcdir)/git.mk
|