blob: 7f7caf3a2143cb8462062225d70d8e1cecf119ed (
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
|
INCLUDES = \
-I$(top_srcdir)\
-I$(top_srcdir)/camel \
-I$(top_srcdir)/widgets/misc \
$(EVOLUTION_MAIL_CFLAGS) \
-DEVOLUTION_DATADIR=\""$(datadir)"\" \
-DEVOLUTION_PRIVDATADIR=\""$(privdatadir)"\" \
-DEVOLUTION_ICONSDIR=\""$(imagesdir)"\" \
-DEVOLUTION_IMAGES=\""$(imagesdir)"\" \
-DEVOLUTION_BUTTONSDIR=\""$(buttonsdir)"\" \
-DEVOLUTION_LOCALEDIR=\""$(localedir)"\" \
-DEVOLUTION_UIDIR=\""$(evolutionuidir)"\" \
-DCAMEL_PROVIDERDIR=\""$(camel_providerdir)"\" \
-DPLUGINDIR=\""$(plugindir)"\" \
-DPREFIX=\""$(prefix)"\"
@EVO_PLUGIN_RULE@
plugin_DATA = org-gnome-evolution-mail-attachments-import-ics.eplug
plugin_LTLIBRARIES = liborg-gnome-evolution-mail-attachments-import-ics.la
liborg_gnome_evolution_mail_attachments_import_ics_la_SOURCES = icsimporter.c
liborg_gnome_evolution_mail_attachments_import_ics_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED)
liborg_gnome_evolution_mail_attachments_import_ics_la_LIBADD = \
$(top_builddir)/e-util/libeutil.la \
$(top_builddir)/mail/libevolution-mail.la \
$(top_builddir)/calendar/common/libevolution-calendarprivate.la \
$(EVOLUTION_CALENDAR_LIBS) \
$(EVOLUTION_MAIL_LIBS)
EXTRA_DIST = org-gnome-evolution-mail-attachments-import-ics.eplug.xml
BUILT_SOURCES = $(plugin_DATA)
CLEANFILES = $(BUILT_SOURCES)
|