annotate src/plugins/quota/Makefile.am @ 4231:8ac54879ca92 HEAD

Install the quota plugin also for POP3.
author Timo Sirainen <tss@iki.fi>
date Thu, 27 Apr 2006 15:30:05 +0300
parents 07c3a801c3dc
children 61cc7e40bec6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3738
732b62dc1976 Added beginnings of plugin infrastructure. TODO: These could be optionally
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
1 AM_CPPFLAGS = \
732b62dc1976 Added beginnings of plugin infrastructure. TODO: These could be optionally
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
2 -I$(top_srcdir)/src/lib \
732b62dc1976 Added beginnings of plugin infrastructure. TODO: These could be optionally
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
3 -I$(top_srcdir)/src/lib-dict \
732b62dc1976 Added beginnings of plugin infrastructure. TODO: These could be optionally
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
4 -I$(top_srcdir)/src/lib-mail \
732b62dc1976 Added beginnings of plugin infrastructure. TODO: These could be optionally
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
5 -I$(top_srcdir)/src/lib-storage
732b62dc1976 Added beginnings of plugin infrastructure. TODO: These could be optionally
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
6
3753
d531130a0e4d Load plugins in sorted order. Prefixed plugins with nn_ set their order.
Timo Sirainen <tss@iki.fi>
parents: 3751
diff changeset
7 lib01_quota_plugin_la_LDFLAGS = -module -avoid-version
3738
732b62dc1976 Added beginnings of plugin infrastructure. TODO: These could be optionally
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
8
732b62dc1976 Added beginnings of plugin infrastructure. TODO: These could be optionally
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
9 module_LTLIBRARIES = \
3753
d531130a0e4d Load plugins in sorted order. Prefixed plugins with nn_ set their order.
Timo Sirainen <tss@iki.fi>
parents: 3751
diff changeset
10 lib01_quota_plugin.la
3738
732b62dc1976 Added beginnings of plugin infrastructure. TODO: These could be optionally
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
11
3753
d531130a0e4d Load plugins in sorted order. Prefixed plugins with nn_ set their order.
Timo Sirainen <tss@iki.fi>
parents: 3751
diff changeset
12 lib01_quota_plugin_la_SOURCES = \
3738
732b62dc1976 Added beginnings of plugin infrastructure. TODO: These could be optionally
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
13 quota.c \
3751
768770a01733 quotactl() quota checking support
Timo Sirainen <tss@iki.fi>
parents: 3743
diff changeset
14 quota-fs.c \
3738
732b62dc1976 Added beginnings of plugin infrastructure. TODO: These could be optionally
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
15 quota-dict.c \
732b62dc1976 Added beginnings of plugin infrastructure. TODO: These could be optionally
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
16 quota-dirsize.c \
4086
07c3a801c3dc Maildir++ quota support.
Timo Sirainen <timo.sirainen@movial.fi>
parents: 3753
diff changeset
17 quota-maildir.c \
3738
732b62dc1976 Added beginnings of plugin infrastructure. TODO: These could be optionally
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
18 quota-plugin.c \
732b62dc1976 Added beginnings of plugin infrastructure. TODO: These could be optionally
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
19 quota-storage.c
732b62dc1976 Added beginnings of plugin infrastructure. TODO: These could be optionally
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
20
3743
146a924333aa Added missing header files. Fixed plugin install hooks to use DESTDIR.
Timo Sirainen <tss@iki.fi>
parents: 3738
diff changeset
21 noinst_HEADERS = \
146a924333aa Added missing header files. Fixed plugin install hooks to use DESTDIR.
Timo Sirainen <tss@iki.fi>
parents: 3738
diff changeset
22 quota.h \
3751
768770a01733 quotactl() quota checking support
Timo Sirainen <tss@iki.fi>
parents: 3743
diff changeset
23 quota-fs.h \
3743
146a924333aa Added missing header files. Fixed plugin install hooks to use DESTDIR.
Timo Sirainen <tss@iki.fi>
parents: 3738
diff changeset
24 quota-plugin.h \
146a924333aa Added missing header files. Fixed plugin install hooks to use DESTDIR.
Timo Sirainen <tss@iki.fi>
parents: 3738
diff changeset
25 quota-private.h
146a924333aa Added missing header files. Fixed plugin install hooks to use DESTDIR.
Timo Sirainen <tss@iki.fi>
parents: 3738
diff changeset
26
3738
732b62dc1976 Added beginnings of plugin infrastructure. TODO: These could be optionally
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
27 install-exec-local:
4231
8ac54879ca92 Install the quota plugin also for POP3.
Timo Sirainen <tss@iki.fi>
parents: 4086
diff changeset
28 $(mkdir_p) $(DESTDIR)$(moduledir)/imap \
8ac54879ca92 Install the quota plugin also for POP3.
Timo Sirainen <tss@iki.fi>
parents: 4086
diff changeset
29 $(DESTDIR)$(moduledir)/pop3 \
8ac54879ca92 Install the quota plugin also for POP3.
Timo Sirainen <tss@iki.fi>
parents: 4086
diff changeset
30 $(DESTDIR)$(moduledir)/lda
8ac54879ca92 Install the quota plugin also for POP3.
Timo Sirainen <tss@iki.fi>
parents: 4086
diff changeset
31 for d in imap pop3 lda; do \
3753
d531130a0e4d Load plugins in sorted order. Prefixed plugins with nn_ set their order.
Timo Sirainen <tss@iki.fi>
parents: 3751
diff changeset
32 rm -f $(DESTDIR)$(moduledir)/$$d/lib01_quota_plugin.so; \
d531130a0e4d Load plugins in sorted order. Prefixed plugins with nn_ set their order.
Timo Sirainen <tss@iki.fi>
parents: 3751
diff changeset
33 $(LN_S) ../lib01_quota_plugin.so $(DESTDIR)$(moduledir)/$$d; \
3738
732b62dc1976 Added beginnings of plugin infrastructure. TODO: These could be optionally
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
34 done