icinga2/lib/icinga/Makefile.am

56 lines
1.1 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 = \
2013-01-27 11:35:47 +01:00
acknowledgement.h \
checkresultmessage.cpp \
checkresultmessage.h \
2012-09-10 14:07:32 +02:00
cib.cpp \
cib.h \
2013-01-29 16:29:09 +01:00
commentprocessor.cpp \
commentprocessor.h \
2013-01-29 14:19:54 +01:00
downtimeprocessor.cpp \
downtimeprocessor.h \
externalcommandprocessor.cpp \
externalcommandprocessor.h \
2012-09-10 14:07:32 +02:00
host.cpp \
hostgroup.cpp \
hostgroup.h \
host.h \
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 \
nullchecktask.cpp \
nullchecktask.h \
pluginchecktask.cpp \
pluginchecktask.h \
2012-09-10 14:07:32 +02:00
service.cpp \
servicegroup.cpp \
servicegroup.h \
2013-02-06 12:55:20 +01:00
service.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