summaryrefslogtreecommitdiffstats
path: root/imap/Makefile.am
blob: f18e023477c4d50121ad2455226f9fc032c9b506 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
## Process this file with automake to produce Makefile.in
include $(top_srcdir)/flymake.am

AR=@AR@

AUTOMAKE_OPTIONS = 1.6 foreign

if USE_GSS
GSSSOURCES = auth_gss.c
endif

if USE_SASL
AUTHENTICATORS = auth_sasl.c
else
AUTHENTICATORS = auth_anon.c auth_cram.c
endif

EXTRA_DIST = README TODO auth_anon.c auth_cram.c auth_gss.c auth_sasl.c

AM_CPPFLAGS = -I$(top_srcdir) -I../intl

noinst_LIBRARIES = libimap.a
noinst_HEADERS = auth.h imap_private.h message.h

libimap_a_SOURCES = auth.c auth_login.c browse.c command.c imap.c imap.h \
	message.c utf7.c util.c $(AUTHENTICATORS) $(GSSSOURCES)