Rocco Rutte:
[apps/madmutt.git] / imap / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 AR=@AR@
4
5 AUTOMAKE_OPTIONS = 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 = BUGS README TODO auth_anon.c auth_cram.c auth_gss.c auth_sasl.c
18
19 INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/intl
20
21 noinst_LIBRARIES = libimap.a
22 noinst_HEADERS = auth.h imap_private.h message.h mx_imap.h
23
24 libimap_a_SOURCES = auth.c auth_login.c browse.c command.c imap.c imap.h mx_imap.h \
25         message.c utf7.c util.c mx_imap.c $(AUTHENTICATORS) $(GSSSOURCES)