blob: 774f02cef07ffe2214b1fdd83949d12a4b32bc6e (
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
|
SUBDIRS = \
dummy \
key-file \
$(NULL)
if ENABLE_TELEPATHY
SUBDIRS += telepathy
endif
if ENABLE_LIBSOCIALWEB
SUBDIRS += libsocialweb
endif
if ENABLE_TRACKER
SUBDIRS += tracker
endif
if ENABLE_EDS
SUBDIRS += eds
endif
if ENABLE_OFONO
SUBDIRS += ofono
endif
if ENABLE_BLUEZ
SUBDIRS += bluez
endif
DIST_SUBDIRS = \
bluez \
eds \
key-file \
libsocialweb \
ofono \
telepathy \
tracker \
dummy \
$(NULL)
EXTRA_DIST = \
backend.mk \
backend-library.mk \
$(NULL)
-include $(top_srcdir)/git.mk
|