icinga2/icinga/Makefile.am

40 lines
920 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 = \
authenticationcomponent.cpp \
authenticationcomponent.h \
2012-04-23 16:51:03 +02:00
discoverycomponent.cpp \
discoverycomponent.h \
2012-04-13 11:45:09 +02:00
endpoint.cpp \
endpoint.h \
endpointmanager.cpp \
endpointmanager.h \
icingaapplication.cpp \
icingaapplication.h \
2012-04-20 10:38:58 +02:00
identitymessage.cpp \
identitymessage.h \
2012-04-13 11:45:09 +02:00
i2-icinga.h \
jsonrpcendpoint.cpp \
jsonrpcendpoint.h \
2012-04-19 12:20:03 +02:00
subscriptioncomponent.cpp \
subscriptioncomponent.h \
2012-04-23 09:53:13 +02:00
subscriptionmessage.cpp \
subscriptionmessage.h \
2012-04-13 11:45:09 +02:00
virtualendpoint.cpp \
virtualendpoint.h
2012-04-01 09:31:03 +02:00
2012-04-13 11:45:09 +02:00
libicinga_la_CFLAGS = -DI2_ICINGA_BUILD
2012-04-06 09:18:06 +02:00
2012-04-13 11:45:09 +02:00
libicinga_la_CXXFLAGS = -DI2_ICINGA_BUILD -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-04-13 11:45:09 +02:00
libicinga_la_LDFLAGS = $(top_builddir)/jsonrpc/libjsonrpc.la \
$(top_builddir)/base/libbase.la \
2012-04-13 11:32:19 +02:00
${top_builddir}/cJSON/libcJSON.la