mirror of https://github.com/Icinga/icinga2.git
98 lines
1.9 KiB
Makefile
98 lines
1.9 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
pkglib_LTLIBRARIES = \
|
|
liblivestatus.la
|
|
|
|
EXTRA_DIST = \
|
|
livestatus-type.conf
|
|
|
|
.conf.cpp: $(top_builddir)/tools/mkembedconfig/mkembedconfig.c
|
|
$(top_builddir)/tools/mkembedconfig/mkembedconfig $< $@
|
|
|
|
liblivestatus_la_SOURCES = \
|
|
aggregator.cpp \
|
|
aggregator.h \
|
|
attributefilter.cpp \
|
|
attributefilter.h \
|
|
andfilter.cpp \
|
|
andfilter.h \
|
|
avgaggregator.cpp \
|
|
avgaggregator.h \
|
|
column.cpp \
|
|
column.h \
|
|
combinerfilter.cpp \
|
|
combinerfilter.h \
|
|
commandstable.cpp \
|
|
commandstable.h \
|
|
commentstable.cpp \
|
|
commentstable.h \
|
|
component.cpp \
|
|
component.h \
|
|
contactgroupstable.cpp \
|
|
contactgroupstable.h \
|
|
contactstable.cpp \
|
|
contactstable.h \
|
|
countaggregator.cpp \
|
|
countaggregator.h \
|
|
downtimestable.cpp \
|
|
downtimestable.h \
|
|
filter.cpp \
|
|
filter.h \
|
|
hostgroupstable.cpp \
|
|
hostgroupstable.h \
|
|
hoststable.cpp \
|
|
hoststable.h \
|
|
invavgaggregator.cpp \
|
|
invavgaggregator.h \
|
|
invsumaggregator.cpp \
|
|
invsumaggregator.h \
|
|
livestatus-type.cpp \
|
|
logtable.cpp \
|
|
logtable.h \
|
|
maxaggregator.cpp \
|
|
maxaggregator.h \
|
|
minaggregator.cpp \
|
|
minaggregator.h \
|
|
negatefilter.cpp \
|
|
negatefilter.h \
|
|
orfilter.cpp \
|
|
orfilter.h \
|
|
query.cpp \
|
|
query.h \
|
|
servicegroupstable.cpp \
|
|
servicegroupstable.h \
|
|
servicestable.cpp \
|
|
servicestable.h \
|
|
statustable.cpp \
|
|
statustable.h \
|
|
stdaggregator.cpp \
|
|
stdaggregator.h \
|
|
sumaggregator.cpp \
|
|
sumaggregator.h \
|
|
timeperiodstable.cpp \
|
|
timeperiodstable.h \
|
|
table.cpp \
|
|
table.h
|
|
|
|
liblivestatus_la_CPPFLAGS = \
|
|
$(LTDLINCL) \
|
|
$(BOOST_CPPFLAGS) \
|
|
-I${top_srcdir}/lib \
|
|
-I${top_srcdir}/components
|
|
|
|
liblivestatus_la_LDFLAGS = \
|
|
$(BOOST_LDFLAGS) \
|
|
-module \
|
|
-no-undefined \
|
|
@RELEASE_INFO@ \
|
|
@VERSION_INFO@
|
|
|
|
liblivestatus_la_LIBADD = \
|
|
$(BOOST_SIGNALS_LIB) \
|
|
$(BOOST_THREAD_LIB) \
|
|
$(BOOST_SYSTEM_LIB) \
|
|
${top_builddir}/lib/base/libbase.la \
|
|
${top_builddir}/lib/config/libconfig.la \
|
|
${top_builddir}/lib/remoting/libremoting.la \
|
|
${top_builddir}/lib/icinga/libicinga.la
|