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-08-03 13:19:55 +02:00
|
|
|
$(LTDLINCL) \
|
2012-05-25 22:04:03 +02:00
|
|
|
$(BOOST_CPPFLAGS) \
|
2012-09-07 10:27:31 +02:00
|
|
|
-I${top_srcdir}/lib/base \
|
|
|
|
-I${top_srcdir}/lib/config \
|
2012-09-10 14:07:32 +02:00
|
|
|
-I${top_srcdir}/lib/remoting \
|
2012-09-07 10:27:31 +02:00
|
|
|
-I${top_srcdir}/lib/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 = \
|
2012-08-03 13:19:55 +02:00
|
|
|
$(LIBLTDL) \
|
2012-07-03 10:00:44 +02:00
|
|
|
$(BOOST_SIGNALS_LIB) \
|
|
|
|
$(BOOST_THREAD_LIB) \
|
2012-08-14 10:40:43 +02:00
|
|
|
$(BOOST_SYSTEM_LIB) \
|
2012-09-07 10:27:31 +02:00
|
|
|
${top_builddir}/lib/base/libbase.la \
|
|
|
|
${top_builddir}/lib/config/libconfig.la \
|
2012-09-10 14:07:32 +02:00
|
|
|
${top_builddir}/lib/remoting/libremoting.la \
|
2012-09-07 10:27:31 +02:00
|
|
|
${top_builddir}/lib/icinga/libicinga.la \
|
2012-06-14 13:04:22 +02:00
|
|
|
-dlopen ${top_builddir}/components/checker/checker.la \
|
2012-09-14 10:52:57 +02:00
|
|
|
-dlopen ${top_builddir}/components/replication/replication.la \
|
2012-06-27 18:43:34 +02:00
|
|
|
-dlopen ${top_builddir}/components/compat/compat.la \
|
2012-07-06 15:56:31 +02:00
|
|
|
-dlopen ${top_builddir}/components/convenience/convenience.la \
|
2012-06-14 21:09:35 +02:00
|
|
|
-dlopen ${top_builddir}/components/delegation/delegation.la \
|
2012-09-03 10:28:14 +02:00
|
|
|
-dlopen ${top_builddir}/components/demo/demo.la
|
2012-05-12 16:12:26 +02:00
|
|
|
|
|
|
|
icinga_DEPENDENCIES = \
|
2012-09-14 10:52:57 +02:00
|
|
|
${top_builddir}/components/replication/replication.la \
|
2012-07-08 09:57:33 +02:00
|
|
|
${top_builddir}/components/convenience/convenience.la
|