aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/backend/ebook/Makefile.am
blob: 1a56402010e66ad02508a144ee0328265e436150 (plain) (blame)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
noinst_PROGRAMS = test-card test-client test-client-list

bin_PROGRAMS =  evolution-vcard-importer    \
        evolution-ldif-importer     \
        load-pine-addressbook       \
        load-gnomecard-addressbook

CORBA_SOURCE =              \
    addressbook.h           \
    addressbook-common.c        \
    addressbook-stubs.c     \
    addressbook-skels.c     \
        Evolution-Composer.h            \
        Evolution-Composer-common.c     \
        Evolution-Composer-skels.c      \
        Evolution-Composer-stubs.c

idls =                              \
    $(srcdir)/../idl/addressbook.idl            \
    $(srcdir)/../../../composer/Evolution-Composer.idl

idl_flags = `$(GNOME_CONFIG) --cflags idl` -I $(datadir)/idl

$(CORBA_SOURCE): $(idls)
    $(ORBIT_IDL) -I $(srcdir) $(idls) $(idl_flags)

INCLUDES =                      \
        -DGNOMELOCALEDIR=\""$(localedir)"\"         \
    -DG_LOG_DOMAIN=\"EBook\"            \
    -I$(top_srcdir)                 \
    -I$(top_srcdir)/camel               \
    -I$(top_srcdir)/addressbook/backend     \
    -I$(top_srcdir)/addressbook/ename       \
    -I$(top_builddir)/addressbook/backend       \
    -I$(top_builddir)/addressbook/ename     \
    -I$(top_builddir)/shell             \
    -I$(top_srcdir)/shell               \
        $(EVOLUTION_ADDRESSBOOK_CFLAGS)

lib_LTLIBRARIES = libebook.la

libebook_la_SOURCES =                   \
    $(CORBA_SOURCE)                 \
    e-book-listener.c               \
    e-book-view-listener.c              \
    e-book-view.c                   \
    e-book.c                    \
    e-book-util.c                   \
    e-card-cursor.c                 \
    e-card-simple.c                 \
    e-card.c                    \
    e-card-compare.c                \
    e-destination.c

libebookincludedir = $(includedir)/evolution/ebook

libebookinclude_HEADERS =               \
    e-book-listener.h               \
    e-book-types.h                  \
    e-book-view-listener.h              \
    e-book-view.h                   \
    e-book.h                    \
    e-book-util.h                   \
    e-card-cursor.h                 \
    e-card-simple.h                 \
    e-card-types.h                  \
    e-card.h                    \
    e-card-compare.h                \
    e-destination.h


#
# make a static library for use by addressbook's conduit's shared library
#
noinst_LTLIBRARIES = libebook-static.la
libebook_static_la_SOURCES = $(libebook_la_SOURCES)
libebook_static_la_LDFLAGS = --all-static


test_client_SOURCES =                   \
    test-client.c

test_client_LDADD =                 \
    libebook.la                 \
    $(EVOLUTION_ADDRESSBOOK_LIBS)           \
    $(top_builddir)/camel/libcamel.la       \
    $(top_builddir)/libversit/libversit.a       \
    $(top_builddir)/e-util/ename/libename.la    \
    $(top_builddir)/e-util/libeutil.la

test_client_list_SOURCES =              \
    test-client-list.c

test_client_list_LDADD =                \
    libebook.la                 \
    $(EVOLUTION_ADDRESSBOOK_LIBS)           \
    $(top_builddir)/camel/libcamel.la       \
    $(top_builddir)/libibex/libibex.la      \
    $(top_builddir)/e-util/ename/libename.la    \
    $(top_builddir)/libversit/libversit.a       \
    $(top_builddir)/e-util/libeutil.la

test_card_SOURCES =                 \
    test-card.c

test_card_LDADD =                   \
    libebook.la                 \
    $(EVOLUTION_ADDRESSBOOK_LIBS)           \
    $(top_builddir)/camel/libcamel.la       \
    $(top_builddir)/libibex/libibex.la      \
    $(top_builddir)/e-util/ename/libename.la    \
    $(top_builddir)/libversit/libversit.a       \
    $(top_builddir)/e-util/libeutil.la

evolution_vcard_importer_SOURCES = \
    evolution-vcard-importer.c

evolution_vcard_importer_LDADD =                \
    libebook.la                     \
    $(EVOLUTION_ADDRESSBOOK_LIBS)               \
    $(top_builddir)/camel/libcamel.la           \
    $(top_builddir)/libibex/libibex.la          \
    $(top_builddir)/shell/importer/libevolution-importer.la \
    $(DB3_LDADD)                        \
    $(top_builddir)/e-util/ename/libename.la        \
    $(top_builddir)/libversit/libversit.a           \
    $(top_builddir)/e-util/libeutil.la

evolution_ldif_importer_SOURCES = \
    evolution-ldif-importer.c

evolution_ldif_importer_LDADD =                 \
    libebook.la                     \
    $(EVOLUTION_ADDRESSBOOK_LIBS)               \
    $(top_builddir)/camel/libcamel.la           \
    $(top_builddir)/libibex/libibex.la          \
    $(top_builddir)/shell/importer/libevolution-importer.la \
    $(DB3_LDADD)                        \
    $(top_builddir)/e-util/ename/libename.la        \
    $(top_builddir)/libversit/libversit.a           \
    $(top_builddir)/e-util/libeutil.la

load_pine_addressbook_SOURCES =             \
    load-pine-addressbook.c

load_pine_addressbook_LDADD =               \
    libebook.la                 \
    $(EVOLUTION_ADDRESSBOOK_LIBS)           \
    $(top_builddir)/camel/libcamel.la       \
    $(top_builddir)/libibex/libibex.la      \
    $(top_builddir)/e-util/ename/libename.la    \
    $(top_builddir)/libversit/libversit.a       \
    $(top_builddir)/e-util/libeutil.la


load_gnomecard_addressbook_SOURCES =            \
    load-gnomecard-addressbook.c

load_gnomecard_addressbook_LDADD =          \
    libebook.la                 \
    $(EVOLUTION_ADDRESSBOOK_LIBS)           \
    $(top_builddir)/camel/libcamel.la       \
    $(top_builddir)/libibex/libibex.la      \
    $(top_builddir)/e-util/ename/libename.la    \
    $(top_builddir)/libversit/libversit.a       \
    $(top_builddir)/e-util/libeutil.la


BUILT_SOURCES = $(CORBA_SOURCE)
CLEANFILES    = $(BUILT_SOURCES)

dist-hook:
    cd $(distdir); rm -f $(BUILT_SOURCES)

oafdir = $(datadir)/oaf
oaf_in_files =  GNOME_Evolution_Addressbook_VCard_Importer.oaf.in \
        GNOME_Evolution_Addressbook_LDIF_Importer.oaf.in
oaf_DATA = $(oaf_in_files:.oaf.in=.oaf)

@XML_I18N_MERGE_OAF_RULE@

# add this back when you add the file to the archive ;)
#   GNOME_Evolution_Addressbook_Pine_Importer.oafinfo

EXTRA_DIST = $(oaf_in_files) $(oaf_DATA)