2012-04-01 09:31:03 +02:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
|
2012-04-13 11:45:09 +02:00
|
|
|
pkglib_LTLIBRARIES = \
|
|
|
|
libicinga.la
|
2012-04-01 09:31:03 +02:00
|
|
|
|
2012-04-13 11:45:09 +02:00
|
|
|
libicinga_la_SOURCES = \
|
2012-06-14 13:04:22 +02:00
|
|
|
checktask.cpp \
|
|
|
|
checktask.h \
|
|
|
|
configobjectadapter.cpp \
|
|
|
|
configobjectadapter.h \
|
2012-04-13 11:45:09 +02:00
|
|
|
endpoint.cpp \
|
|
|
|
endpoint.h \
|
|
|
|
endpointmanager.cpp \
|
|
|
|
endpointmanager.h \
|
|
|
|
icingaapplication.cpp \
|
|
|
|
icingaapplication.h \
|
2012-04-24 07:16:34 +02:00
|
|
|
icingacomponent.cpp \
|
|
|
|
icingacomponent.h \
|
2012-06-14 13:04:22 +02:00
|
|
|
host.cpp \
|
|
|
|
host.h \
|
2012-04-13 11:45:09 +02:00
|
|
|
i2-icinga.h \
|
|
|
|
jsonrpcendpoint.cpp \
|
|
|
|
jsonrpcendpoint.h \
|
2012-06-14 13:04:22 +02:00
|
|
|
macroprocessor.cpp \
|
|
|
|
macroprocessor.h \
|
|
|
|
nagioschecktask.cpp \
|
|
|
|
nagioschecktask.h \
|
|
|
|
service.cpp \
|
|
|
|
service.h \
|
2012-04-13 11:45:09 +02:00
|
|
|
virtualendpoint.cpp \
|
|
|
|
virtualendpoint.h
|
2012-04-01 09:31:03 +02:00
|
|
|
|
2012-05-29 11:38:51 +02:00
|
|
|
libicinga_la_CPPFLAGS = \
|
2012-05-09 12:10:07 +02:00
|
|
|
-DI2_ICINGA_BUILD \
|
2012-05-25 22:04:03 +02:00
|
|
|
$(BOOST_CPPFLAGS) \
|
2012-05-09 12:10:07 +02:00
|
|
|
-I${top_srcdir}/base \
|
2012-04-06 09:10:22 +02:00
|
|
|
-I${top_srcdir}/jsonrpc \
|
|
|
|
-I${top_srcdir}/cJSON \
|
2012-06-19 19:05:24 +02:00
|
|
|
-I${top_srcdir}/third-party/popen-noshell \
|
2012-04-06 09:10:22 +02:00
|
|
|
-I${top_srcdir}
|
2012-04-01 09:31:03 +02:00
|
|
|
|
2012-05-09 12:10:07 +02:00
|
|
|
libicinga_la_LDFLAGS = \
|
2012-05-29 16:24:55 +02:00
|
|
|
$(BOOST_LDFLAGS) \
|
2012-05-09 12:10:07 +02:00
|
|
|
-no-undefined \
|
2012-05-27 19:45:40 +02:00
|
|
|
@RELEASE_INFO@ \
|
|
|
|
@VERSION_INFO@
|
2012-05-09 12:10:07 +02:00
|
|
|
|
|
|
|
libicinga_la_LIBADD = \
|
2012-06-17 20:35:56 +02:00
|
|
|
$(BOOST_THREAD_LIB) \
|
2012-05-09 12:10:07 +02:00
|
|
|
${top_builddir}/jsonrpc/libjsonrpc.la \
|
2012-06-19 19:05:24 +02:00
|
|
|
${top_builddir}/base/libbase.la \
|
|
|
|
${top_builddir}/third-party/popen-noshell/libpopen_noshell.la
|