icinga2/components/cluster/Makefile.am

51 lines
1.1 KiB
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-10-26 09:41:45 +02:00
BUILT_SOURCES = \
clusterlistener.th \
endpoint.th
2013-10-30 12:18:08 +01:00
nodist_libcluster_la_SOURCES = $(BUILT_SOURCES)
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 $< $@
2013-10-26 09:41:45 +02:00
.ti.th: $(top_builddir)/tools/mkclass/mkclass
2013-10-30 12:18:08 +01:00
$(top_builddir)/tools/mkclass/mkclass $< > $@.tmp && mv $@.tmp $@
2013-10-26 09:41:45 +02:00
libcluster_la_SOURCES = \
2013-09-25 09:36:55 +02:00
clusterlistener.cpp \
clusterlistener.h \
2013-10-26 09:41:45 +02:00
clusterlistener.ti \
2013-08-29 08:37:31 +02:00
cluster-type.conf \
2012-09-10 14:07:32 +02:00
endpoint.cpp \
endpoint.h \
2013-10-26 09:41:45 +02:00
endpoint.ti \
2013-04-04 16:08:02 +02:00
jsonrpc.cpp \
jsonrpc.h
2012-03-28 13:24:49 +02:00
libcluster_la_CPPFLAGS = \
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