diff options
Diffstat (limited to 'plugins/attachment-reminder/Makefile.am')
-rw-r--r-- | plugins/attachment-reminder/Makefile.am | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/plugins/attachment-reminder/Makefile.am b/plugins/attachment-reminder/Makefile.am new file mode 100644 index 0000000000..e4a7d99cc0 --- /dev/null +++ b/plugins/attachment-reminder/Makefile.am @@ -0,0 +1,44 @@ +@EVO_PLUGIN_RULE@ + +error_DATA = org-gnome-attachment-reminder.error + +errordir = $(privdatadir)/errors + +plugin_DATA = \ + org-gnome-evolution-attachment-reminder.eplug + +plugin_LTLIBRARIES = liborg-gnome-evolution-attachment-reminder.la + +liborg_gnome_evolution_attachment_reminder_la_CPPFLAGS = \ + $(AM_CPPFLAGS) \ + -I$(top_builddir)/composer \ + -I$(top_srcdir) \ + -DEVOLUTION_PLUGINDIR="\"$(plugindir)\"" \ + $(EVOLUTION_DATA_SERVER_CFLAGS) \ + $(GNOME_PLATFORM_CFLAGS) \ + $(GTKHTML_CFLAGS) + +liborg_gnome_evolution_attachment_reminder_la_SOURCES = attachment-reminder.c + +liborg_gnome_evolution_attachment_reminder_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED) + +liborg_gnome_evolution_attachment_reminder_la_LIBADD = \ + $(top_builddir)/composer/libevolution-mail-composer.la \ + $(top_builddir)/shell/libevolution-shell.la \ + $(top_builddir)/addressbook/gui/contact-editor/libecontacteditor.la \ + $(top_builddir)/addressbook/gui/contact-list-editor/libecontactlisteditor.la \ + $(top_builddir)/e-util/libevolution-util.la \ + $(top_builddir)/mail/libevolution-mail.la \ + $(EVOLUTION_DATA_SERVER_LIBS) \ + $(GNOME_PLATFORM_LIBS) \ + $(GTKHTML_LIBS) + +EXTRA_DIST = org-gnome-evolution-attachment-reminder.eplug.xml \ + org-gnome-attachment-reminder.error.xml + +BUILT_SOURCES = org-gnome-evolution-attachment-reminder.eplug \ + org-gnome-attachment-reminder.error + +CLEANFILES = $(BUILT_SOURCES) + +-include $(top_srcdir)/git.mk |