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 = \
|
2013-02-15 16:34:33 +01:00
|
|
|
api.cpp \
|
|
|
|
api.h \
|
2013-01-31 16:49:40 +01:00
|
|
|
checkresultmessage.cpp \
|
|
|
|
checkresultmessage.h \
|
2012-09-10 14:07:32 +02:00
|
|
|
cib.cpp \
|
|
|
|
cib.h \
|
2013-01-29 15:00:39 +01:00
|
|
|
externalcommandprocessor.cpp \
|
|
|
|
externalcommandprocessor.h \
|
2012-09-10 14:07:32 +02:00
|
|
|
host.cpp \
|
|
|
|
hostgroup.cpp \
|
|
|
|
hostgroup.h \
|
|
|
|
host.h \
|
2013-02-14 14:58:26 +01:00
|
|
|
i2-icinga.cpp \
|
2012-09-10 14:07:32 +02:00
|
|
|
i2-icinga.h \
|
2012-04-13 11:45:09 +02:00
|
|
|
icingaapplication.cpp \
|
|
|
|
icingaapplication.h \
|
2012-09-10 14:07:32 +02:00
|
|
|
macroprocessor.cpp \
|
|
|
|
macroprocessor.h \
|
2013-02-09 11:42:22 +01:00
|
|
|
notification.cpp \
|
|
|
|
notification.h \
|
2013-02-09 15:20:10 +01:00
|
|
|
notificationrequestmessage.cpp \
|
|
|
|
notificationrequestmessage.h \
|
2012-09-10 14:07:32 +02:00
|
|
|
nullchecktask.cpp \
|
|
|
|
nullchecktask.h \
|
2013-02-28 11:45:47 +01:00
|
|
|
perfdatawriter.cpp \
|
|
|
|
perfdatawriter.h \
|
2012-09-25 09:06:21 +02:00
|
|
|
pluginchecktask.cpp \
|
|
|
|
pluginchecktask.h \
|
2013-02-09 11:42:22 +01:00
|
|
|
pluginnotificationtask.cpp \
|
|
|
|
pluginnotificationtask.h \
|
2012-09-10 14:07:32 +02:00
|
|
|
service.cpp \
|
2013-02-09 18:39:43 +01:00
|
|
|
service-check.cpp \
|
2013-02-09 01:16:43 +01:00
|
|
|
service-comment.cpp \
|
|
|
|
service-downtime.cpp \
|
2013-02-09 11:42:22 +01:00
|
|
|
service-notification.cpp \
|
2013-02-09 01:16:43 +01:00
|
|
|
service.h \
|
2012-09-10 14:07:32 +02:00
|
|
|
servicegroup.cpp \
|
2013-02-24 08:26:10 +01:00
|
|
|
servicegroup.h \
|
|
|
|
user.cpp \
|
2013-02-27 21:49:03 +01:00
|
|
|
user.h \
|
|
|
|
usergroup.cpp \
|
|
|
|
usergroup.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-09-07 10:27:31 +02:00
|
|
|
-I${top_srcdir}/lib/base \
|
|
|
|
-I${top_srcdir}/lib/config \
|
2012-09-10 14:07:32 +02:00
|
|
|
-I${top_srcdir}/lib/remoting \
|
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-09-07 10:27:31 +02:00
|
|
|
${top_builddir}/lib/base/libbase.la \
|
|
|
|
${top_builddir}/lib/config/libconfig.la \
|
2012-09-10 14:07:32 +02:00
|
|
|
${top_builddir}/lib/remoting/libremoting.la
|