2012-04-13 11:45:09 +02:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2013-08-16 14:50:01 +02:00
|
|
|
bin_PROGRAMS = \
|
2012-09-17 09:48:34 +02:00
|
|
|
icinga2
|
2012-04-13 11:45:09 +02:00
|
|
|
|
2012-09-17 09:48:34 +02:00
|
|
|
icinga2_SOURCES = \
|
2012-04-13 11:45:09 +02:00
|
|
|
icinga.cpp
|
|
|
|
|
2012-09-17 09:48:34 +02:00
|
|
|
icinga2_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) \
|
2013-03-16 21:18:53 +01:00
|
|
|
-I${top_srcdir}/lib \
|
|
|
|
-I${top_srcdir}/components
|
2012-04-13 11:45:09 +02:00
|
|
|
|
2012-09-17 09:48:34 +02:00
|
|
|
icinga2_LDFLAGS = \
|
2012-09-27 09:38:28 +02:00
|
|
|
$(BOOST_LDFLAGS) \
|
|
|
|
-export-dynamic
|
2012-05-29 16:24:55 +02:00
|
|
|
|
2012-09-17 09:48:34 +02:00
|
|
|
icinga2_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) \
|
2013-02-02 23:22:27 +01:00
|
|
|
$(BOOST_PROGRAM_OPTIONS_LIB) \
|
2012-09-07 10:27:31 +02:00
|
|
|
${top_builddir}/lib/base/libbase.la \
|
|
|
|
${top_builddir}/lib/config/libconfig.la \
|
2013-01-17 15:05:34 +01:00
|
|
|
-dlopen ${top_builddir}/lib/icinga/libicinga.la \
|
2013-03-12 13:45:54 +01:00
|
|
|
-dlopen ${top_builddir}/components/checker/libchecker.la \
|
2013-08-28 11:12:20 +02:00
|
|
|
-dlopen ${top_builddir}/components/cluster/libcluster.la \
|
2013-03-12 13:45:54 +01:00
|
|
|
-dlopen ${top_builddir}/components/compat/libcompat.la \
|
|
|
|
-dlopen ${top_builddir}/components/demo/libdemo.la \
|
2013-03-15 11:19:52 +01:00
|
|
|
-dlopen ${top_builddir}/components/livestatus/liblivestatus.la \
|
2013-03-12 13:45:54 +01:00
|
|
|
-dlopen ${top_builddir}/components/notification/libnotification.la
|
2013-02-16 14:26:45 +01:00
|
|
|
|
|
|
|
if PYTHON_USE
|
|
|
|
icinga2_LDADD += \
|
|
|
|
-dlopen ${top_builddir}/lib/python/libpython.la
|
|
|
|
endif
|
2013-09-26 09:04:27 +02:00
|
|
|
|
|
|
|
if MYSQL_USE
|
|
|
|
icinga2_LDADD += \
|
|
|
|
-dlopen ${top_builddir}/components/db_ido_mysql/libdb_ido_mysql.la
|
|
|
|
endif
|