view src/pop3-login/Makefile.am @ 22325:e01bc3015b2f

lib-index: Check .log.2 rotation only when syncing Instead of also whenever appending transactions to .log file. This shouldn't change the behavior much, and it's needed for the following change to work correctly.
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Tue, 11 Jul 2017 15:33:56 +0300
parents 266101990d63
children
line wrap: on
line source

pkglibexecdir = $(libexecdir)/dovecot

pkglibexec_PROGRAMS = pop3-login

AM_CPPFLAGS = \
	-I$(top_srcdir)/src/lib \
	-I$(top_srcdir)/src/lib-settings \
	-I$(top_srcdir)/src/lib-auth \
	-I$(top_srcdir)/src/lib-sasl \
	-I$(top_srcdir)/src/lib-master \
	-I$(top_srcdir)/src/login-common

pop3_login_LDADD = \
	$(LIBDOVECOT_LOGIN) \
	$(LIBDOVECOT) \
	$(SSL_LIBS)
pop3_login_DEPENDENCIES = \
	$(LIBDOVECOT_LOGIN) \
	$(LIBDOVECOT_DEPS)

pop3_login_SOURCES = \
	client.c \
	client-authenticate.c \
	pop3-login-settings.c \
	pop3-proxy.c

noinst_HEADERS = \
	client.h \
	client-authenticate.h \
	pop3-login-settings.h \
	pop3-proxy.h