icinga2/components/livestatus/Makefile.am

50 lines
979 B
Makefile
Raw Normal View History

2013-03-10 03:09:01 +01:00
## Process this file with automake to produce Makefile.in
pkglib_LTLIBRARIES = \
livestatus.la
livestatus_la_SOURCES = \
2013-03-10 12:24:03 +01:00
andfilter.cpp \
andfilter.h \
2013-03-10 15:14:14 +01:00
combinerfilter.cpp \
combinerfilter.h \
component.cpp \
component.h \
connection.cpp \
connection.h \
filter.cpp \
filter.h \
2013-03-10 15:14:14 +01:00
negatefilter.cpp \
negastefilter.h \
2013-03-10 12:24:03 +01:00
orfilter.cpp \
orfilter.h \
query.cpp \
query.h \
statustable.cpp \
statustable.h \
table.cpp \
table.h \
2013-03-10 03:09:01 +01:00
i2-livestatus.h
livestatus_la_CPPFLAGS = \
$(BOOST_CPPFLAGS) \
-I${top_srcdir}/lib/base \
-I${top_srcdir}/lib/config \
-I${top_srcdir}/lib/remoting \
-I${top_srcdir}/lib/icinga
livestatus_la_LDFLAGS = \
$(BOOST_LDFLAGS) \
-module \
-no-undefined \
@RELEASE_INFO@ \
@VERSION_INFO@
livestatus_la_LIBADD = \
$(BOOST_SIGNALS_LIB) \
$(BOOST_THREAD_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