2012-04-13 11:45:09 +02:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
|
2012-05-09 12:10:07 +02:00
|
|
|
bin_PROGRAMS = \
|
2012-04-13 11:45:09 +02:00
|
|
|
icinga
|
|
|
|
|
2012-05-09 12:10:07 +02:00
|
|
|
icinga_SOURCES = \
|
2012-04-13 11:45:09 +02:00
|
|
|
icinga.cpp
|
|
|
|
|
2012-05-29 11:38:51 +02:00
|
|
|
icinga_CPPFLAGS = \
|
2012-05-09 12:10:07 +02:00
|
|
|
-DI2_ICINGALAUNCHER_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-13 11:45:09 +02:00
|
|
|
-I${top_srcdir}/jsonrpc \
|
2012-04-13 11:49:49 +02:00
|
|
|
-I${top_srcdir}/icinga \
|
2012-04-13 11:45:09 +02:00
|
|
|
-I${top_srcdir}
|
|
|
|
|
2012-05-29 16:24:55 +02:00
|
|
|
icinga_LDFLAGS = \
|
|
|
|
$(BOOST_LDFLAGS)
|
|
|
|
|
2012-05-09 12:10:07 +02:00
|
|
|
icinga_LDADD = \
|
|
|
|
${top_builddir}/base/libbase.la \
|
2012-05-12 16:12:26 +02:00
|
|
|
${top_builddir}/icinga/libicinga.la \
|
2012-06-14 13:04:22 +02:00
|
|
|
-dlopen ${top_builddir}/components/checker/checker.la \
|
2012-05-12 16:12:26 +02:00
|
|
|
-dlopen ${top_builddir}/components/configfile/configfile.la \
|
|
|
|
-dlopen ${top_builddir}/components/configrpc/configrpc.la \
|
2012-06-14 21:09:35 +02:00
|
|
|
-dlopen ${top_builddir}/components/delegation/delegation.la \
|
2012-05-12 16:12:26 +02:00
|
|
|
-dlopen ${top_builddir}/components/demo/demo.la \
|
|
|
|
-dlopen ${top_builddir}/components/discovery/discovery.la
|
|
|
|
|
|
|
|
icinga_DEPENDENCIES = \
|
|
|
|
${top_builddir}/components/configfile/configfile.la
|