summaryrefslogtreecommitdiffstats
path: root/src/replication/aggregator/Makefile.am
blob: a0b350131ba2d823fe7563304523fe173dfb5310 (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
27
28
29
pkglibexecdir = $(libexecdir)/dovecot

pkglibexec_PROGRAMS = aggregator

AM_CPPFLAGS = \
	-I$(top_srcdir)/src/lib \
	-I$(top_srcdir)/src/lib-settings \
	-I$(top_srcdir)/src/lib-auth \
	-I$(top_srcdir)/src/lib-master \
	-I$(top_srcdir)/src/replication \
	-DPKG_STATEDIR=\""$(statedir)"\" \
	$(BINARY_CFLAGS)

aggregator_LDFLAGS = -export-dynamic \
	$(BINARY_LDFLAGS)

aggregator_LDADD = $(LIBDOVECOT)
aggregator_DEPENDENCIES = $(LIBDOVECOT_DEPS)

aggregator_SOURCES = \
	aggregator.c \
	aggregator-settings.c \
	notify-connection.c \
	replicator-connection.c

noinst_HEADERS = \
	aggregator-settings.h \
	notify-connection.h \
	replicator-connection.h