blob: 05a1d57f7aebc0886ecf62012c20c150760c174c (
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
|
SUBDIRS = icons
if WITH_CAPPLET
evolution_settings_desktop_in = evolution-settings.desktop.in
endif
desktopdir = $(datadir)/applications
desktop_in_files = evolution.desktop.in $(evolution_settings_desktop_in)
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
autostartdir = $(sysconfdir)/xdg/autostart
autostart_in_files = evolution-alarm-notify.desktop.in
autostart_DATA = $(autostart_in_files:.desktop.in=.desktop)
@INTLTOOL_DESKTOP_RULE@
gsettings_SCHEMAS = \
org.gnome.evolution.gschema.xml \
org.gnome.evolution.addressbook.gschema.xml \
org.gnome.evolution.calendar.gschema.xml \
org.gnome.evolution.importer.gschema.xml \
org.gnome.evolution.mail.gschema.xml \
org.gnome.evolution.shell.gschema.xml \
org.gnome.evolution.bogofilter.gschema.xml \
org.gnome.evolution.spamassassin.gschema.xml \
org.gnome.evolution.plugin.attachment-reminder.gschema.xml \
org.gnome.evolution.plugin.autocontacts.gschema.xml \
org.gnome.evolution.plugin.email-custom-header.gschema.xml \
org.gnome.evolution.plugin.external-editor.gschema.xml \
org.gnome.evolution.plugin.face-picture.gschema.xml \
org.gnome.evolution.plugin.itip.gschema.xml \
org.gnome.evolution.plugin.mail-notification.gschema.xml \
org.gnome.evolution.plugin.prefer-plain.gschema.xml \
org.gnome.evolution.plugin.publish-calendar.gschema.xml \
org.gnome.evolution.plugin.templates.gschema.xml
@INTLTOOL_XML_NOMERGE_RULE@
@GSETTINGS_RULES@
convertdir = $(datadir)/GConf/gsettings
convert_DATA = evolution.convert
themedir = $(privdatadir)/theme
dist_theme_DATA = \
default.css \
webview.css \
webview-print.css \
tab-bar-background.png \
tab-switcher.png \
tab-switcher-hover.png \
tab-switcher-close.png \
tab-switcher-close-hover.png \
tab-inactive-hover.png \
tab-inactive.png \
tab-active.png \
tab-inactive-hover-private.png \
tab-inactive-private.png \
tab-active-private.png \
close-on-tab.png \
close-on-tab-hover.png \
preview-tab-inactive.png \
preview-tab-active.png \
preview-tab-hover.png \
preview-tab-inactive-private.png \
preview-tab-active-private.png \
preview-tab-hover-private.png \
tab-add.png \
tab-add-hover.png
if HAVE_KDE_APPLNK
kdedesktopdir = $(KDE_APPLNK_DIR)/Applications
kdedesktop_DATA = $(desktop_in_in_file:.desktop.in.in=.desktop)
endif
dist_noinst_MANS = evolution.1
CLEANFILES = \
$(autostart_DATA) \
$(desktop_DATA)
EXTRA_DIST = \
$(autostart_in_files) \
$(desktop_in_files) \
$(convert_DATA) \
$(gsettings_SCHEMAS:.xml=.xml.in)
DISTCLEANFILES = \
$(gsettings_SCHEMAS)
-include $(top_srcdir)/git.mk
|