mutt stable branch with some hacks
at master 24 lines 585 B view raw
1## Process this file with automake to produce Makefile.in 2include $(top_srcdir)/flymake.am 3 4AUTOMAKE_OPTIONS = 1.6 foreign 5 6if USE_GSS 7GSSSOURCES = auth_gss.c 8endif 9 10if USE_SASL 11AUTHENTICATORS = auth_sasl.c 12else 13AUTHENTICATORS = auth_anon.c auth_cram.c 14endif 15 16EXTRA_DIST = README TODO auth_anon.c auth_cram.c auth_gss.c auth_sasl.c 17 18AM_CPPFLAGS = -I$(top_srcdir) -I../intl 19 20noinst_LIBRARIES = libimap.a 21noinst_HEADERS = auth.h imap_private.h message.h 22 23libimap_a_SOURCES = auth.c auth_login.c browse.c command.c imap.c imap.h \ 24 message.c utf7.c util.c $(AUTHENTICATORS) $(GSSSOURCES)