~ubuntu-branches/ubuntu/wily/dovecot/wily

« back to all changes in this revision

Viewing changes to src/plugins/fts/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij
  • Date: 2015-05-24 15:01:19 UTC
  • mto: (4.1.53 sid)
  • mto: This revision was merged to the branch mainline in revision 102.
  • Revision ID: package-import@ubuntu.com-20150524150119-hsh6cbr1fqseapga
Tags: upstream-2.2.18
ImportĀ upstreamĀ versionĀ 2.2.18

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
AM_CPPFLAGS = \
5
5
        -I$(top_srcdir)/src/lib \
6
6
        -I$(top_srcdir)/src/lib-settings \
 
7
        -I$(top_srcdir)/src/lib-fts \
7
8
        -I$(top_srcdir)/src/lib-http \
8
9
        -I$(top_srcdir)/src/lib-mail \
9
10
        -I$(top_srcdir)/src/lib-index \
18
19
module_LTLIBRARIES = \
19
20
        lib20_fts_plugin.la
20
21
 
 
22
lib20_fts_plugin_la_LIBADD = ../../lib-fts/libfts.la
 
23
 
21
24
lib20_fts_plugin_la_SOURCES = \
22
25
        fts-api.c \
23
26
        fts-build-mail.c \
29
32
        fts-parser-tika.c \
30
33
        fts-plugin.c \
31
34
        fts-search.c \
 
35
        fts-search-args.c \
32
36
        fts-search-serialize.c \
33
 
        fts-storage.c
 
37
        fts-storage.c \
 
38
        fts-user.c
34
39
 
35
40
pkginc_libdir=$(pkgincludedir)
36
41
pkginc_lib_HEADERS = \
38
43
        fts-api-private.h \
39
44
        fts-expunge-log.h \
40
45
        fts-indexer.h \
41
 
        fts-parser.h
 
46
        fts-parser.h \
 
47
        fts-user.h
42
48
 
43
49
noinst_HEADERS = \
44
50
        doveadm-fts.h \
45
51
        fts-build-mail.h \
46
52
        fts-plugin.h \
 
53
        fts-search-args.h \
47
54
        fts-search-serialize.h \
48
55
        fts-storage.h
49
56