diff options
Diffstat (limited to 'src/ipc/Makefile.am')
-rw-r--r-- | src/ipc/Makefile.am | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/ipc/Makefile.am b/src/ipc/Makefile.am new file mode 100644 index 0000000..a12609e --- /dev/null +++ b/src/ipc/Makefile.am @@ -0,0 +1,25 @@ +pkglibexecdir = $(libexecdir)/dovecot + +pkglibexec_PROGRAMS = ipc + +AM_CPPFLAGS = \ + -I$(top_srcdir)/src/lib \ + -I$(top_srcdir)/src/lib-settings \ + -I$(top_srcdir)/src/lib-master \ + $(BINARY_CFLAGS) + +ipc_LDADD = $(LIBDOVECOT) \ + $(BINARY_LDFLAGS) +ipc_DEPENDENCIES = $(LIBDOVECOT_DEPS) + +ipc_SOURCES = \ + client.c \ + main.c \ + ipc-connection.c \ + ipc-group.c \ + ipc-settings.c + +noinst_HEADERS = \ + client.h \ + ipc-connection.h \ + ipc-group.h |