diff options
author | Sankar P <psankar@novell.com> | 2007-01-22 19:50:16 +0800 |
---|---|---|
committer | Sankarasivasubramanian Pasupathilingam <psankar@src.gnome.org> | 2007-01-22 19:50:16 +0800 |
commit | 0b9195cb2c24add072671f82d1d1498b78a8b217 (patch) | |
tree | b9f81e77c96feba58139dfb095159a9f9e4e553a /plugins/imap-features/Makefile.am | |
parent | b159b35b8fd0fd97e0c2cbeceee1739518e0fb23 (diff) | |
download | gsoc2013-evolution-0b9195cb2c24add072671f82d1d1498b78a8b217.tar gsoc2013-evolution-0b9195cb2c24add072671f82d1d1498b78a8b217.tar.gz gsoc2013-evolution-0b9195cb2c24add072671f82d1d1498b78a8b217.tar.bz2 gsoc2013-evolution-0b9195cb2c24add072671f82d1d1498b78a8b217.tar.lz gsoc2013-evolution-0b9195cb2c24add072671f82d1d1498b78a8b217.tar.xz gsoc2013-evolution-0b9195cb2c24add072671f82d1d1498b78a8b217.tar.zst gsoc2013-evolution-0b9195cb2c24add072671f82d1d1498b78a8b217.zip |
Added support for configuring the imap-headers plugin.
2007-01-22 Sankar P <psankar@novell.com>
* configure.in: Added support for configuring the
imap-headers plugin.
svn path=/trunk/; revision=33133
Diffstat (limited to 'plugins/imap-features/Makefile.am')
-rw-r--r-- | plugins/imap-features/Makefile.am | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/plugins/imap-features/Makefile.am b/plugins/imap-features/Makefile.am new file mode 100644 index 0000000000..d84f600702 --- /dev/null +++ b/plugins/imap-features/Makefile.am @@ -0,0 +1,40 @@ +if OS_WIN32 +NO_UNDEFINED_REQUIRED_LIBS = $(top_builddir)/mail/libevolution-mail.la +endif + +INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/mail \ + -I$(top_srcdir)/libedataserver \ + $(EVOLUTION_MAIL_CFLAGS) \ + $(CAMEL_IMAP_CFLAGS) \ + -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \ + -DEVOLUTION_IMAGESDIR=\""$(imagesdir)"\" + +@EVO_PLUGIN_RULE@ + +plugin_DATA = org-gnome-imap-features.eplug +plugin_LTLIBRARIES = liborg-gnome-imap-features.la + +liborg_gnome_imap_features_la_SOURCES = \ + imap-headers.c + +liborg_gnome_imap_features_la_LIBADD= \ + $(NO_UNDEFINED_REQUIRED_LIBS) \ + $(EVOLUTION_MAIL_LIBS) + + +liborg_gnome_imap_features_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED) + +glade_DATA = \ + imap-headers.glade + +errordir = $(privdatadir)/errors + +BUILT_SOURCES = org-gnome-imap-features.eplug $(error_i18n) + +EXTRA_DIST = \ + $(glade_DATA) \ + org-gnome-imap-features.eplug.xml + +CLEANFILES = $(BUILT_SOURCES) |