These libraries are bound for E-D-S so they live at the lowest layer of Evolution for now -- even libeutil can link to them (but please don't). This is the first step toward moving mail handing to a D-Bus service.
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
@EVO_PLUGIN_RULE@
|
|
|
|
plugin_DATA = org-gnome-itip-formatter.eplug
|
|
plugin_LTLIBRARIES = liborg-gnome-itip-formatter.la
|
|
|
|
liborg_gnome_itip_formatter_la_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/widgets \
|
|
$(EVOLUTION_DATA_SERVER_CFLAGS) \
|
|
$(GNOME_PLATFORM_CFLAGS) \
|
|
$(GTKHTML_CFLAGS)
|
|
|
|
liborg_gnome_itip_formatter_la_SOURCES = itip-formatter.c itip-view.c itip-view.h
|
|
|
|
liborg_gnome_itip_formatter_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED)
|
|
|
|
liborg_gnome_itip_formatter_la_LIBADD = \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(top_builddir)/calendar/gui/libevolution-calendar.la \
|
|
$(top_builddir)/mail/libevolution-mail.la \
|
|
$(top_builddir)/shell/libeshell.la \
|
|
$(top_builddir)/em-format/libemformat.la \
|
|
$(top_builddir)/widgets/misc/libemiscwidgets.la \
|
|
$(top_builddir)/libemail-utils/libemail-utils.la \
|
|
$(top_builddir)/libemail-engine/libemail-engine.la \
|
|
$(EVOLUTION_DATA_SERVER_LIBS) \
|
|
$(GNOME_PLATFORM_LIBS) \
|
|
$(GTKHTML_LIBS)
|
|
|
|
error_DATA = org-gnome-itip-formatter.error
|
|
errordir = $(privdatadir)/errors
|
|
|
|
BUILT_SOURCES = $(plugin_DATA) $(error_DATA)
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
EXTRA_DIST = \
|
|
org-gnome-itip-formatter.eplug.xml \
|
|
org-gnome-itip-formatter.error.xml
|
|
|
|
-include $(top_srcdir)/git.mk
|