mirror of https://github.com/Icinga/icinga2.git
58 lines
1.1 KiB
Makefile
58 lines
1.1 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
pkglib_LTLIBRARIES = \
|
|
libicinga.la
|
|
|
|
libicinga_la_SOURCES = \
|
|
acknowledgement.h \
|
|
checkresultmessage.cpp \
|
|
checkresultmessage.h \
|
|
cib.cpp \
|
|
cib.h \
|
|
commentprocessor.cpp \
|
|
commentprocessor.h \
|
|
downtimeprocessor.cpp \
|
|
downtimeprocessor.h \
|
|
externalcommandprocessor.cpp \
|
|
externalcommandprocessor.h \
|
|
host.cpp \
|
|
hostgroup.cpp \
|
|
hostgroup.h \
|
|
host.h \
|
|
i2-icinga.h \
|
|
icingaapplication.cpp \
|
|
icingaapplication.h \
|
|
macroprocessor.cpp \
|
|
macroprocessor.h \
|
|
nullchecktask.cpp \
|
|
nullchecktask.h \
|
|
pluginchecktask.cpp \
|
|
pluginchecktask.h \
|
|
service.cpp \
|
|
servicegroup.cpp \
|
|
servicegroup.h \
|
|
service.h \
|
|
timeperiod.cpp \
|
|
timeperiod.h
|
|
|
|
libicinga_la_CPPFLAGS = \
|
|
-DI2_ICINGA_BUILD \
|
|
$(BOOST_CPPFLAGS) \
|
|
-I${top_srcdir}/lib/base \
|
|
-I${top_srcdir}/lib/config \
|
|
-I${top_srcdir}/lib/remoting \
|
|
-I${top_srcdir}
|
|
|
|
libicinga_la_LDFLAGS = \
|
|
$(BOOST_LDFLAGS) \
|
|
-no-undefined \
|
|
@RELEASE_INFO@ \
|
|
@VERSION_INFO@
|
|
|
|
libicinga_la_LIBADD = \
|
|
$(BOOST_THREAD_LIB) \
|
|
${top_builddir}/lib/base/libbase.la \
|
|
${top_builddir}/lib/config/libconfig.la \
|
|
${top_builddir}/lib/remoting/libremoting.la
|