2012-04-01 09:31:03 +02:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
|
|
|
|
bin_PROGRAMS = \
|
|
|
|
icinga
|
|
|
|
|
2012-04-01 09:48:52 +02:00
|
|
|
icinga_SOURCES = \
|
2012-04-06 08:56:52 +02:00
|
|
|
endpoint.cpp \
|
|
|
|
endpoint.h \
|
|
|
|
endpointmanager.cpp \
|
|
|
|
endpointmanager.h \
|
2012-04-01 09:31:03 +02:00
|
|
|
icingaapplication.cpp \
|
2012-04-01 13:57:22 +02:00
|
|
|
icingaapplication.h \
|
2012-04-06 08:56:52 +02:00
|
|
|
i2-icinga.h \
|
|
|
|
jsonrpcendpoint.cpp \
|
|
|
|
jsonrpcendpoint.h \
|
|
|
|
virtualendpoint.cpp \
|
|
|
|
virtualendpoint.h
|
2012-04-01 09:31:03 +02:00
|
|
|
|
2012-04-01 09:48:52 +02:00
|
|
|
icinga_CXXFLAGS = -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-04 10:21:14 +02:00
|
|
|
icinga_LDFLAGS = $(top_builddir)/jsonrpc/libjsonrpc.la \
|
2012-04-06 08:56:52 +02:00
|
|
|
$(top_builddir)/base/libbase.la \
|
|
|
|
${top_builddir}/cJSON/libcJSON.la
|