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
|
|
|
|
2013-03-12 13:45:54 +01:00
|
|
|
EXTRA_DIST = \
|
2013-04-19 13:17:17 +02:00
|
|
|
icinga-type.conf
|
2013-03-12 13:45:54 +01:00
|
|
|
|
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 $< $@
|
|
|
|
|
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 \
|
|
|
|
i2-icinga.h \
|
2013-03-12 13:45:54 +01:00
|
|
|
icinga-type.cpp \
|
2012-04-13 11:45:09 +02:00
|
|
|
icingaapplication.cpp \
|
|
|
|
icingaapplication.h \
|
2013-04-15 12:48:12 +02:00
|
|
|
legacytimeperiod.cpp \
|
|
|
|
legacytimeperiod.h \
|
2012-09-10 14:07:32 +02:00
|
|
|
macroprocessor.cpp \
|
|
|
|
macroprocessor.h \
|
2013-03-22 14:40:55 +01:00
|
|
|
macroresolver.cpp \
|
|
|
|
macroresolver.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 \
|
2013-03-13 16:04:53 +01:00
|
|
|
timeperiod.cpp \
|
|
|
|
timeperiod.h \
|
2013-02-24 08:26:10 +01:00
|
|
|
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) \
|
2013-03-16 21:18:53 +01:00
|
|
|
-I${top_srcdir}/lib
|
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) \
|
2013-03-14 15:14:07 +01:00
|
|
|
$(BOOST_SYSTEM_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
|