icinga2/icinga/Makefile.am

27 lines
568 B
Makefile
Raw Normal View History

2012-04-01 09:31:03 +02:00
## Process this file with automake to produce Makefile.in
bin_PROGRAMS = \
icinga
icinga_SOURCES = \
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 \
i2-icinga.h \
jsonrpcendpoint.cpp \
jsonrpcendpoint.h \
virtualendpoint.cpp \
virtualendpoint.h
2012-04-01 09:31:03 +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 \
$(top_builddir)/base/libbase.la \
${top_builddir}/cJSON/libcJSON.la