blob: 8eafbd8ffbafbfe6035ec2ada8ca4bddc9e0052b (
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
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
|
NULL =
builtin_sources_in_files = \
builtin/caldav-stub.source.in \
builtin/contacts-stub.source.in \
builtin/google-stub.source.in \
builtin/ldap-stub.source.in \
builtin/local-stub.source.in \
builtin/weather-stub.source.in \
builtin/webcal-stub.source.in \
builtin/webdav-stub.source.in \
builtin/birthdays.source.in \
builtin/local.source.in \
builtin/sendmail.source.in \
builtin/system-address-book.source.in \
builtin/system-calendar.source.in \
builtin/system-memo-list.source.in \
builtin/system-proxy.source.in \
builtin/system-task-list.source.in \
builtin/vfolder.source.in \
$(NULL)
builtin_sources = $(builtin_sources_in_files:.source.in=.source)
%.source: %.source.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po)
$(AM_V_GEN) $(MKDIR_P) builtin && LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@
service_in_files = org.gnome.evolution.dataserver.Sources.service.in
servicedir = $(datadir)/dbus-1/services
service_DATA = $(service_in_files:.service.in=.service)
@EVO_SUBST_SERVICE_RULE@
CLEANFILES = \
$(BUILT_SOURCES) \
$(builtin_sources) \
$(service_DATA) \
$(NULL)
EXTRA_DIST = \
evolution-source-registry-resource.xml \
$(builtin_sources_in_files) \
$(service_in_files) \
$(NULL)
libexec_PROGRAMS = \
evolution-source-registry \
evolution-scan-gconf-tree-xml \
$(NULL)
evolution_source_registry_CPPFLAGS = \
$(AM_CPPFLAGS) \
-I$(top_srcdir) \
-I$(top_builddir) \
-DG_LOG_DOMAIN=\"evolution-source-registry\" \
-DLOCALEDIR=\"$(localedir)\" \
$(E_DATA_SERVER_CFLAGS) \
$(FACTORY_GTK_CFLAGS) \
$(LIBSECRET_CFLAGS) \
$(CAMEL_CFLAGS) \
$(SOUP_CFLAGS) \
$(NULL)
evolution_source_registry_SOURCES = \
$(BUILT_SOURCES) \
evolution-source-registry.c \
evolution-source-registry-migrate-basedir.c \
evolution-source-registry-migrate-proxies.c \
evolution-source-registry-migrate-sources.c \
evolution-source-registry-migrate-imap-to-imapx.c \
$(NULL)
evolution_source_registry_LDADD = \
$(top_builddir)/libebackend/libebackend-1.2.la \
$(top_builddir)/libedataserver/libedataserver-1.2.la \
$(top_builddir)/camel/libcamel-1.2.la \
$(E_DATA_SERVER_LIBS) \
$(FACTORY_GTK_LIBS) \
$(LIBSECRET_LIBS) \
$(CAMEL_LIBS) \
$(SOUP_LIBS) \
$(NULL)
evolution_scan_gconf_tree_xml_CPPFLAGS = \
$(AM_CPPFLAGS) \
-I$(top_srcdir) \
-I$(top_builddir) \
-DG_LOG_DOMAIN=\"evolution-scan-gconf-tree-xml\" \
-DLOCALEDIR=\"$(localedir)\" \
$(E_DATA_SERVER_CFLAGS) \
$(LIBSECRET_CFLAGS) \
$(CAMEL_CFLAGS) \
$(SOUP_CFLAGS) \
$(NULL)
evolution_scan_gconf_tree_xml_SOURCES = \
evolution-scan-gconf-tree-xml.c \
evolution-source-registry-migrate-sources.c \
$(NULL)
evolution_scan_gconf_tree_xml_LDADD = \
$(top_builddir)/libebackend/libebackend-1.2.la \
$(top_builddir)/libedataserver/libedataserver-1.2.la \
$(top_builddir)/camel/libcamel-1.2.la \
$(E_DATA_SERVER_LIBS) \
$(LIBSECRET_LIBS) \
$(CAMEL_LIBS) \
$(SOUP_LIBS) \
$(NULL)
evolution-source-registry-resource.h: evolution-source-registry-resource.xml $(builtin_sources)
$(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) \
$(srcdir)/evolution-source-registry-resource.xml \
--target=$@ \
--sourcedir=$(builddir)/builtin \
--c-name evolution_source_registry \
--generate-header
evolution-source-registry-resource.c: evolution-source-registry-resource.xml $(builtin_sources)
$(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) \
$(srcdir)/evolution-source-registry-resource.xml \
--target=$@ \
--sourcedir=$(builddir)/builtin \
--c-name evolution_source_registry \
--generate-source
BUILT_SOURCES = \
evolution-source-registry-resource.c \
evolution-source-registry-resource.h \
$(NULL)
-include $(top_srcdir)/git.mk
|