view src/stats/Makefile.am @ 19604:c996bc091c6b

master: Do not close stdout if going foreground This lets one to use /dev/stdout for logging. Mainly useful for testing purposes where we can generate log output to stdout and use tee to write it to a file for later examination.
author Aki Tuomi <aki.tuomi@dovecot.fi>
date Mon, 18 Jan 2016 15:50:23 +0200
parents 845fb37ef972
children ce7e31d9ad08
line wrap: on
line source

stats_moduledir = $(moduledir)/stats
pkglibexecdir = $(libexecdir)/dovecot

pkglibexec_PROGRAMS = stats

AM_CPPFLAGS = \
	-DSTATS_MODULE_DIR=\""$(stats_moduledir)"\" \
	-I$(top_srcdir)/src/lib \
	-I$(top_srcdir)/src/lib-settings \
	-I$(top_srcdir)/src/lib-master \
	-I$(top_srcdir)/src/lib-stats

stats_LDADD = $(LIBDOVECOT) 
stats_DEPENDENCIES = $(LIBDOVECOT_DEPS)

stats_SOURCES = \
	client.c \
	client-export.c \
	client-reset.c \
	global-memory.c \
	mail-command.c \
	mail-domain.c \
	mail-ip.c \
	mail-server-connection.c \
	mail-session.c \
	mail-stats.c \
	mail-user.c \
	main.c \
	stats-settings.c

noinst_HEADERS = \
	client.h \
	client-export.h \
	client-reset.h \
	global-memory.h \
	mail-command.h \
	mail-domain.h \
	mail-ip.h \
	mail-server-connection.h \
	mail-session.h \
	mail-stats.h \
	mail-user.h \
	stats-settings.h