blob: c2dda2f712f5eddd29086eff05885f1ba20f2b4b (
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
|
include $(top_srcdir)/Makefile.decl
SUBDIRS = \
libstemmer \
libinotify \
rasqal \
libtracker-common \
libtracker-db \
libtracker-data \
libtracker \
tracker-fts \
plugins \
tracker-store \
tracker-utils \
tracker-extract \
tracker-miner-fs
if HAVE_TRACKER_PREFERENCES
SUBDIRS += tracker-preferences
endif
if HAVE_TRACKER_APPLET
SUBDIRS += tracker-applet
endif
if HAVE_LIBTRACKERGTK
SUBDIRS += libtracker-gtk
endif
if HAVE_TRACKER_SEARCH_TOOL
SUBDIRS += tracker-search-tool
endif
if HAVE_TRACKER_EXPLORER
SUBDIRS += tracker-explorer
endif
DIST_SUBDIRS = \
libstemmer \
libinotify \
rasqal \
libtracker-common \
libtracker-db \
libtracker-data \
libtracker \
tracker-fts \
tracker-store \
tracker-utils \
tracker-explorer \
tracker-extract \
tracker-miner-fs \
libtracker-gtk \
tracker-applet \
tracker-explorer \
tracker-search-tool \
tracker-preferences \
plugins
|