icinga2/icinga/Makefile.am

39 lines
750 B
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 = \
endpoint.cpp \
endpoint.h \
endpointmanager.cpp \
endpointmanager.h \
icingaapplication.cpp \
icingaapplication.h \
icingacomponent.cpp \
icingacomponent.h \
2012-04-13 11:45:09 +02:00
i2-icinga.h \
jsonrpcendpoint.cpp \
jsonrpcendpoint.h \
virtualendpoint.cpp \
virtualendpoint.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-05-09 12:10:07 +02:00
-I${top_srcdir}/base \
2012-04-06 09:10:22 +02:00
-I${top_srcdir}/jsonrpc \
-I${top_srcdir}/cJSON \
-I${top_srcdir}
2012-04-01 09:31:03 +02:00
2012-05-09 12:10:07 +02:00
libicinga_la_LDFLAGS = \
-no-undefined \
@RELEASE_INFO@ \
@VERSION_INFO@
2012-05-09 12:10:07 +02:00
libicinga_la_LIBADD = \
2012-05-25 22:04:03 +02:00
$(BOOST_LDFLAGS) \
2012-05-09 12:10:07 +02:00
${top_builddir}/jsonrpc/libjsonrpc.la \
${top_builddir}/base/libbase.la