blob: 7c19c024847cb83dcd805b2750627641ea83ac84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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/imap \
-I$(top_srcdir)/src/plugins/quota
imap_moduledir = $(moduledir)
NOPLUGIN_LDFLAGS =
lib11_imap_quota_plugin_la_LDFLAGS = -module -avoid-version
imap_module_LTLIBRARIES = \
lib11_imap_quota_plugin.la
if DOVECOT_PLUGIN_DEPS
lib11_imap_quota_plugin_la_LIBADD = \
../quota/lib10_quota_plugin.la
endif
lib11_imap_quota_plugin_la_SOURCES = \
imap-quota-plugin.c
noinst_HEADERS = \
imap-quota-plugin.h
|