icinga2/components/cluster/Makefile.am

41 lines
843 B
Makefile
Raw Normal View History

2012-03-28 13:24:49 +02:00
## Process this file with automake to produce Makefile.in
2012-05-09 12:10:07 +02:00
pkglib_LTLIBRARIES = \
libcluster.la
2013-08-29 08:37:31 +02:00
CLEANFILES = \
2013-08-29 08:21:07 +02:00
cluster-type.cpp
.conf.cpp: $(top_builddir)/tools/mkembedconfig/mkembedconfig
$(top_builddir)/tools/mkembedconfig/mkembedconfig $< $@
libcluster_la_SOURCES = \
clustercomponent.cpp \
clustercomponent.h \
2013-08-29 08:37:31 +02:00
cluster-type.conf \
2012-09-10 14:07:32 +02:00
endpoint.cpp \
endpoint.h \
2013-04-04 16:08:02 +02:00
jsonrpc.cpp \
jsonrpc.h
2012-03-28 13:24:49 +02:00
libcluster_la_CPPFLAGS = \
2013-07-02 16:56:01 +02:00
$(LTDLINCL) \
2012-05-25 22:04:03 +02:00
$(BOOST_CPPFLAGS) \
-I${top_srcdir}/lib \
-I${top_srcdir}/components
2012-05-09 12:10:07 +02:00
libcluster_la_LDFLAGS = \
2012-05-29 16:24:55 +02:00
$(BOOST_LDFLAGS) \
-module \
2012-05-09 12:10:07 +02:00
-no-undefined \
@RELEASE_INFO@ \
@VERSION_INFO@
2012-05-09 12:10:07 +02:00
libcluster_la_LIBADD = \
$(BOOST_SIGNALS_LIB) \
2013-03-14 15:14:07 +01:00
$(BOOST_THREAD_LIB) \
$(BOOST_SYSTEM_LIB) \
2012-09-10 14:07:32 +02:00
${top_builddir}/lib/base/libbase.la \
${top_builddir}/lib/config/libconfig.la \
${top_builddir}/lib/icinga/libicinga.la