icinga2/components/replication/Makefile.am

38 lines
870 B
Makefile
Raw Normal View History

## Process this file with automake to produce Makefile.in
pkglib_LTLIBRARIES = \
libreplication.la
EXTRA_DIST = \
replication-type.conf
.conf.cpp: $(top_builddir)/tools/mkembedconfig/mkembedconfig.c
$(top_builddir)/tools/mkembedconfig/mkembedconfig $< $@
libreplication_la_SOURCES = \
replicationcomponent.cpp \
replicationcomponent.h \
2013-04-19 13:17:17 +02:00
replication-type.cpp
libreplication_la_CPPFLAGS = \
2013-07-02 16:56:01 +02:00
$(LTDLINCL) \
$(BOOST_CPPFLAGS) \
2013-03-16 21:18:53 +01:00
-I${top_srcdir}/lib \
-I${top_srcdir}/components
libreplication_la_LDFLAGS = \
$(BOOST_LDFLAGS) \
-module \
-no-undefined \
@RELEASE_INFO@ \
@VERSION_INFO@
libreplication_la_LIBADD = \
2012-07-03 10:00:44 +02:00
$(BOOST_SIGNALS_LIB) \
$(BOOST_THREAD_LIB) \
2013-03-14 15:14:07 +01:00
$(BOOST_SYSTEM_LIB) \
${top_builddir}/lib/base/libbase.la \
${top_builddir}/lib/config/libconfig.la \
2012-09-10 14:07:32 +02:00
${top_builddir}/lib/remoting/libremoting.la \
${top_builddir}/lib/icinga/libicinga.la