]> git.llucax.com Git - software/mutt-debian.git/blob - imap/Makefile.am
removing an article form the Description of mutt-patched to make lintian happy
[software/mutt-debian.git] / imap / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 AR=@AR@
4
5 AUTOMAKE_OPTIONS = 1.6 foreign
6
7 if USE_GSS
8 GSSSOURCES = auth_gss.c
9 endif
10
11 if USE_SASL
12 AUTHENTICATORS = auth_sasl.c
13 else
14 AUTHENTICATORS = auth_anon.c auth_cram.c
15 endif
16
17 EXTRA_DIST = README TODO auth_anon.c auth_cram.c auth_gss.c auth_sasl.c
18
19 AM_CPPFLAGS = -I$(top_srcdir) -I../intl
20
21 noinst_LIBRARIES = libimap.a
22 noinst_HEADERS = auth.h imap_private.h message.h
23
24 libimap_a_SOURCES = auth.c auth_login.c browse.c command.c imap.c imap.h \
25         message.c utf7.c util.c $(AUTHENTICATORS) $(GSSSOURCES)