icinga2/lib/icinga/Makefile.am

68 lines
1.3 KiB
Makefile
Raw Normal View History

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 = \
api.cpp \
api.h \
checkresultmessage.cpp \
checkresultmessage.h \
2012-09-10 14:07:32 +02:00
cib.cpp \
cib.h \
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 \
notificationrequestmessage.cpp \
notificationrequestmessage.h \
2012-09-10 14:07:32 +02:00
nullchecktask.cpp \
nullchecktask.h \
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 \
service-check.cpp \
service-comment.cpp \
service-downtime.cpp \
2013-02-09 11:42:22 +01:00
service-notification.cpp \
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) \
-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 \
@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) \
${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