annotate src/replication/aggregator/Makefile.am @ 15928:217fb4ca9b5a

MODULE_LIBS is now part of LIBDOVECOT. No need to explicitly link it everywhere.
author Timo Sirainen <tss@iki.fi>
date Mon, 25 Feb 2013 13:00:40 +0200
parents 75f1f39c547f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14261
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
1 pkglibexecdir = $(libexecdir)/dovecot
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
2
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
3 pkglibexec_PROGRAMS = aggregator
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
4
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
5 AM_CPPFLAGS = \
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
6 -I$(top_srcdir)/src/lib \
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
7 -I$(top_srcdir)/src/lib-settings \
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
8 -I$(top_srcdir)/src/lib-auth \
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
9 -I$(top_srcdir)/src/lib-master \
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
10 -I$(top_srcdir)/src/replication \
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
11 -DPKG_STATEDIR=\""$(statedir)"\"
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
12
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
13 aggregator_LDFLAGS = -export-dynamic
15928
217fb4ca9b5a MODULE_LIBS is now part of LIBDOVECOT. No need to explicitly link it everywhere.
Timo Sirainen <tss@iki.fi>
parents: 14323
diff changeset
14 aggregator_LDADD = $(LIBDOVECOT)
14261
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
15 aggregator_DEPENDENCIES = $(LIBDOVECOT_DEPS)
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
16
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
17 aggregator_SOURCES = \
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
18 aggregator.c \
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
19 aggregator-settings.c \
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
20 notify-connection.c \
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
21 replicator-connection.c
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
22
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
23 noinst_HEADERS = \
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
24 aggregator-settings.h \
14ff849dc266 Initial implementation of dsync-based replication.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
25 notify-connection.h \
14323
75f1f39c547f Makefile: Fixed header filename.
Timo Sirainen <tss@iki.fi>
parents: 14261
diff changeset
26 replicator-connection.h