icinga2/components/livestatus/Makefile.am

72 lines
1.4 KiB
Makefile
Raw Normal View History

2013-03-10 03:09:01 +01:00
## Process this file with automake to produce Makefile.in
pkglib_LTLIBRARIES = \
liblivestatus.la
2013-03-10 03:09:01 +01:00
EXTRA_DIST = \
livestatus-type.conf
2013-03-15 13:35:39 +01:00
.conf.cpp: $(top_builddir)/tools/mkembedconfig.c
$(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 \
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 \
filter.cpp \
filter.h \
2013-03-10 22:55:57 +01:00
hoststable.cpp \
hoststable.h \
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 \
query.cpp \
query.h \
2013-03-10 22:55:57 +01:00
servicestable.cpp \
servicestable.h \
statustable.cpp \
statustable.h \
table.cpp \
table.h \
2013-03-10 03:09:01 +01:00
i2-livestatus.h
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
liblivestatus_la_LDFLAGS = \
2013-03-10 03:09:01 +01:00
$(BOOST_LDFLAGS) \
-module \
-no-undefined \
@RELEASE_INFO@ \
@VERSION_INFO@
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