2013-03-10 03:09:01 +01:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
pkglib_LTLIBRARIES = \
|
2013-03-12 13:45:54 +01:00
|
|
|
liblivestatus.la
|
2013-03-10 03:09:01 +01:00
|
|
|
|
2013-03-12 13:45:54 +01:00
|
|
|
EXTRA_DIST = \
|
|
|
|
livestatus-type.conf
|
|
|
|
|
2013-03-15 13:35:39 +01:00
|
|
|
.conf.cpp: $(top_builddir)/tools/mkembedconfig.c
|
2013-03-12 13:45:54 +01:00
|
|
|
$(top_builddir)/tools/mkembedconfig $< $@
|
|
|
|
|
|
|
|
liblivestatus_la_SOURCES = \
|
2013-03-10 22:55:57 +01:00
|
|
|
attributefilter.cpp \
|
|
|
|
attributefilter.h \
|
2013-03-10 12:24:03 +01:00
|
|
|
andfilter.cpp \
|
|
|
|
andfilter.h \
|
2013-03-10 18:49:14 +01:00
|
|
|
column.cpp \
|
|
|
|
column.h \
|
2013-03-10 15:14:14 +01:00
|
|
|
combinerfilter.cpp \
|
|
|
|
combinerfilter.h \
|
2013-03-10 22:55:57 +01:00
|
|
|
commentstable.cpp \
|
|
|
|
commentstable.h \
|
2013-03-10 09:23:13 +01:00
|
|
|
component.cpp \
|
|
|
|
component.h \
|
|
|
|
connection.cpp \
|
|
|
|
connection.h \
|
2013-03-10 17:57:49 +01:00
|
|
|
contactgroupstable.cpp \
|
|
|
|
contactgroupstable.h \
|
|
|
|
contactstable.cpp \
|
|
|
|
contactstable.h \
|
2013-03-10 22:55:57 +01:00
|
|
|
downtimestable.cpp \
|
|
|
|
downtimestable.h \
|
2013-03-10 09:23:13 +01:00
|
|
|
filter.cpp \
|
|
|
|
filter.h \
|
2013-03-10 22:55:57 +01:00
|
|
|
hoststable.cpp \
|
|
|
|
hoststable.h \
|
2013-03-12 13:45:54 +01:00
|
|
|
livestatus-type.cpp \
|
2013-03-10 15:14:14 +01:00
|
|
|
negatefilter.cpp \
|
2013-03-10 17:57:49 +01:00
|
|
|
negatefilter.h \
|
2013-03-10 12:24:03 +01:00
|
|
|
orfilter.cpp \
|
|
|
|
orfilter.h \
|
2013-03-10 09:23:13 +01:00
|
|
|
query.cpp \
|
|
|
|
query.h \
|
2013-03-10 22:55:57 +01:00
|
|
|
servicestable.cpp \
|
|
|
|
servicestable.h \
|
2013-03-10 09:23:13 +01:00
|
|
|
statustable.cpp \
|
|
|
|
statustable.h \
|
|
|
|
table.cpp \
|
2013-03-17 20:19:29 +01:00
|
|
|
table.h
|
2013-03-10 03:09:01 +01:00
|
|
|
|
2013-03-12 13:45:54 +01:00
|
|
|
liblivestatus_la_CPPFLAGS = \
|
2013-03-10 03:09:01 +01:00
|
|
|
$(BOOST_CPPFLAGS) \
|
2013-03-16 21:18:53 +01:00
|
|
|
-I${top_srcdir}/lib \
|
|
|
|
-I${top_srcdir}/components
|
2013-03-10 03:09:01 +01:00
|
|
|
|
2013-03-12 13:45:54 +01:00
|
|
|
liblivestatus_la_LDFLAGS = \
|
2013-03-10 03:09:01 +01:00
|
|
|
$(BOOST_LDFLAGS) \
|
|
|
|
-module \
|
|
|
|
-no-undefined \
|
|
|
|
@RELEASE_INFO@ \
|
|
|
|
@VERSION_INFO@
|
|
|
|
|
2013-03-12 13:45:54 +01:00
|
|
|
liblivestatus_la_LIBADD = \
|
2013-03-10 03:09:01 +01:00
|
|
|
$(BOOST_SIGNALS_LIB) \
|
|
|
|
$(BOOST_THREAD_LIB) \
|
2013-03-14 15:14:07 +01:00
|
|
|
$(BOOST_SYSTEM_LIB) \
|
2013-03-10 03:09:01 +01:00
|
|
|
${top_builddir}/lib/base/libbase.la \
|
|
|
|
${top_builddir}/lib/config/libconfig.la \
|
|
|
|
${top_builddir}/lib/remoting/libremoting.la \
|
|
|
|
${top_builddir}/lib/icinga/libicinga.la
|