Commit 78a9fc65 78a9fc6598aada4b11acc229ca1768975632db9c by Sergey Poznyakoff

Add moderator module

1 parent c92227c9
1 ## Process this file with GNU Automake to create Makefile.in 1 ## Process this file with GNU Automake to create Makefile.in
2 2
3 ## Copyright (C) 2004, 2005 Free Software Foundation, Inc. 3 ## Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
4 ## 4 ##
5 ## GNU Mailutils is free software; you can redistribute it and/or 5 ## GNU Mailutils is free software; you can redistribute it and/or
6 ## modify it under the terms of the GNU General Public License as 6 ## modify it under the terms of the GNU General Public License as
...@@ -18,23 +18,32 @@ ...@@ -18,23 +18,32 @@
18 ## 02110-1301 USA 18 ## 02110-1301 USA
19 19
20 moddir=@SIEVE_MODDIR@ 20 moddir=@SIEVE_MODDIR@
21 mod_LTLIBRARIES = timestamp.la spamd.la list.la vacation.la 21 mod_LTLIBRARIES = \
22 list.la\
23 moderator.la\
24 spamd.la\
25 timestamp.la\
26 vacation.la
22 27
23 INCLUDES = @MU_COMMON_INCLUDES@ @INTLINCS@ 28 INCLUDES = @MU_COMMON_INCLUDES@ @INTLINCS@
24 29
25 AM_LDFLAGS = ../../lib/libmuaux.la ../../mailbox/libmailutils.la 30 AM_LDFLAGS = ../../lib/libmuaux.la ../../mailbox/libmailutils.la
26 31
27 timestamp_la_SOURCES = timestamp.c 32 list_la_SOURCES = list.c
28 timestamp_la_LIBADD = ../libsieve.la 33 list_la_LIBADD = ../libsieve.la
29 timestamp_la_LDFLAGS = -module -avoid-version -no-undefined 34 list_la_LDFLAGS = -module -avoid-version -no-undefined
35
36 moderator_la_SOURCES = moderator.c
37 moderator_la_LIBADD = ../libsieve.la
38 moderator_la_LDFLAGS = -module -avoid-version -no-undefined
30 39
31 spamd_la_SOURCES = spamd.c 40 spamd_la_SOURCES = spamd.c
32 spamd_la_LIBADD = ../libsieve.la 41 spamd_la_LIBADD = ../libsieve.la
33 spamd_la_LDFLAGS = -module -avoid-version -no-undefined 42 spamd_la_LDFLAGS = -module -avoid-version -no-undefined
34 43
35 list_la_SOURCES = list.c 44 timestamp_la_SOURCES = timestamp.c
36 list_la_LIBADD = ../libsieve.la 45 timestamp_la_LIBADD = ../libsieve.la
37 list_la_LDFLAGS = -module -avoid-version -no-undefined 46 timestamp_la_LDFLAGS = -module -avoid-version -no-undefined
38 47
39 vacation_la_SOURCES = vacation.c 48 vacation_la_SOURCES = vacation.c
40 vacation_la_LIBADD = ../libsieve.la 49 vacation_la_LIBADD = ../libsieve.la
......