Commit 5549636b 5549636b5b491a88fdda43d6341bb57ecad55b42 by Wojciech Polak

New file

1 parent 1ea81b39
1 Makefile.in
2 Makefile
3 .deps
4 .libs
5 *.l[oa]
1 ## Process this file with GNU Automake to create Makefile.in
2
3 ## Copyright (C) 2004 Free Software Foundation, Inc.
4 ##
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
7 ## published by the Free Software Foundation; either version 2, or (at
8 ## your option) any later version.
9 ##
10 ## This program is distributed in the hope that it will be useful, but
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 ## General Public License for more details.
14 ##
15 ## You should have received a copy of the GNU General Public License
16 ## along with this program; if not, write to the Free Software
17 ## Foundation, Inc.
18 ## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19
20 moddir=@SIEVE_MODDIR@
21 mod_LTLIBRARIES = timestamp.la spamd.la list.la
22
23 INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/lib\
24 -I$(top_builddir)/include/mailutils/gnu\
25 -I$(top_srcdir)/mailbox @INTLINCS@
26
27 AM_LDFLAGS = ../../mailbox/libmailbox.la ../../lib/libmailutils.la
28
29 timestamp_la_SOURCES = timestamp.c
30 timestamp_la_LIBADD = ../libsieve.la
31 timestamp_la_LDFLAGS = -module -avoid-version -no-undefined
32
33 spamd_la_SOURCES = spamd.c
34 spamd_la_LIBADD = ../libsieve.la
35 spamd_la_LDFLAGS = -module -avoid-version -no-undefined
36
37 list_la_SOURCES = list.c
38 list_la_LIBADD = ../libsieve.la
39 list_la_LDFLAGS = -module -avoid-version -no-undefined
40