view src/plugins/notify/Makefile.am @ 10623:c9e0ee292a08 HEAD

notify plugin: Install headers if --enable-header-install is used. Patch by Mark Washenberger.
author Timo Sirainen <tss@iki.fi>
date Mon, 01 Feb 2010 20:02:53 +0200
parents 3c87c0b18090
children eee1e2a1c25b
line wrap: on
line source

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

lib15_notify_plugin_la_LDFLAGS = -module -avoid-version

module_LTLIBRARIES = \
	lib15_notify_plugin.la

lib15_notify_plugin_la_SOURCES = \
	notify-plugin.c \
	notify-noop.c \
	notify-storage.c

headers = \
	notify-plugin.h \
	notify-plugin-private.h

if INSTALL_HEADERS
  pkginc_libdir=$(pkgincludedir)
  pkginc_lib_HEADERS = $(headers)
else
  noinst_HEADERS = $(headers)
endif