diff options
Diffstat (limited to '')
-rw-r--r-- | src/plugins/notify/Makefile.am | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/plugins/notify/Makefile.am b/src/plugins/notify/Makefile.am new file mode 100644 index 0000000..dfa286e --- /dev/null +++ b/src/plugins/notify/Makefile.am @@ -0,0 +1,25 @@ +AM_CPPFLAGS = \ + -I$(top_srcdir)/src/lib \ + -I$(top_srcdir)/src/lib-mail \ + -I$(top_srcdir)/src/lib-imap \ + -I$(top_srcdir)/src/lib-index \ + -I$(top_srcdir)/src/lib-storage \ + -I$(top_srcdir)/src/lib-storage/index \ + -I$(top_srcdir)/src/lib-storage/index/maildir + +NOPLUGIN_LDFLAGS = +lib15_notify_plugin_la_LDFLAGS = -module -avoid-version + +module_LTLIBRARIES = \ + lib15_notify_plugin.la + +lib15_notify_plugin_la_SOURCES = \ + notify-plugin.c \ + notify-storage.c + +headers = \ + notify-plugin.h \ + notify-plugin-private.h + +pkginc_libdir=$(pkgincludedir) +pkginc_lib_HEADERS = $(headers) |