view src/auth/Makefile.am @ 907:218e68ab290d HEAD

Initial support for Cyrus SASL 2 library. I couldn't get it to work yet though :)
author Timo Sirainen <tss@iki.fi>
date Sun, 05 Jan 2003 17:19:50 +0200
parents 1d20a088aead
children 5f52674b3a58
line wrap: on
line source

pkglibexecdir = $(libexecdir)/dovecot

pkglibexec_PROGRAMS = imap-auth

INCLUDES = \
	-I$(top_srcdir)/src/lib \
	$(VPOPMAIL_CFLAGS)

imap_auth_LDADD = \
	../lib/liblib.a \
	$(USERINFO_LIBS) \
	$(SASL_LIBS) \
	$(VPOPMAIL_LIBS)

imap_auth_SOURCES = \
	auth.c \
	auth-cyrus-sasl2.c \
	auth-plain.c \
	auth-digest-md5.c \
	cookie.c \
	login-connection.c \
	main.c \
	master.c \
	mycrypt.c \
	userinfo.c \
	userinfo-passwd.c \
	userinfo-shadow.c \
	userinfo-pam.c \
	userinfo-passwd-file.c \
	userinfo-vpopmail.c

noinst_HEADERS = \
	auth.h \
	auth-interface.h \
	common.h \
	cookie.h \
	login-connection.h \
	master.h \
	mycrypt.h \
	userinfo.h \
	userinfo-passwd.h