Commit cb7515a6 cb7515a609b7f1c2c9492af8f3dec8912c17481c by Sergey Poznyakoff

Added numaddr.c; (AM_LDFLAGS): Removed libmailutils. It's not used by examples.

1 parent 7059a1d6
...@@ -2,11 +2,27 @@ ...@@ -2,11 +2,27 @@
2 # Copyright (C) 2000,2001,2002 Free Software Foundation 2 # Copyright (C) 2000,2001,2002 Free Software Foundation
3 # See file COPYING in the distribution root directory for copying conditions. 3 # See file COPYING in the distribution root directory for copying conditions.
4 4
5 AUTOMAKE_OPTIONS = ../lib/ansi2knr 5 noinst_PROGRAMS = \
6 noinst_PROGRAMS = addr url-parse sfrom mimetest muemail msg-send http mta 6 addr\
7 url-parse\
8 sfrom\
9 mimetest\
10 muemail\
11 msg-send\
12 http\
13 mta
14
15 moddir=$(datadir)
16 mod_LTLIBRARIES = numaddr.la
7 17
8 INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/lib 18 INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/lib
9 AM_LDFLAGS = ../mailbox/libmailbox.la ../lib/libmailutils.la 19 AM_LDFLAGS = ../mailbox/libmailbox.la
20
21 numaddr_la_SOURCES = numaddr.c
22 numaddr_la_LIBADD = ../libsieve/libsieve.la
23 numaddr_la_LDFLAGS = -module -avoid-version -no-undefined
10 24
11 EXTRA_DIST = comsat.conf dot.biffrc gnu-imap4d.pam gnu-pop3d.pam\ 25 EXTRA_DIST = comsat.conf dot.biffrc gnu-imap4d.pam gnu-pop3d.pam\
12 mailutils.rc reply.scm 26 mailutils.rc reply.scm
27
28
......