icinga2/icinga-app/Makefile.am

46 lines
1.2 KiB
Makefile
Raw Normal View History

2012-04-13 11:45:09 +02:00
## Process this file with automake to produce Makefile.in
bin_PROGRAMS = \
icinga2
2012-04-13 11:45:09 +02:00
icinga2_SOURCES = \
2012-04-13 11:45:09 +02:00
icinga.cpp
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
icinga2_LDFLAGS = \
2012-09-27 09:38:28 +02:00
$(BOOST_LDFLAGS) \
-export-dynamic
2012-05-29 16:24:55 +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) \
$(BOOST_SYSTEM_LIB) \
$(BOOST_PROGRAM_OPTIONS_LIB) \
${top_builddir}/lib/base/libbase.la \
${top_builddir}/lib/config/libconfig.la \
-dlopen ${top_builddir}/lib/icinga/libicinga.la \
-dlopen ${top_builddir}/components/checker/libchecker.la \
2013-08-28 11:12:20 +02:00
-dlopen ${top_builddir}/components/cluster/libcluster.la \
-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-10-14 20:12:42 +02:00
-dlopen ${top_builddir}/components/notification/libnotification.la \
-dlopen ${top_builddir}/components/perfdata/libperfdata.la
if PYTHON_USE
icinga2_LDADD += \
-dlopen ${top_builddir}/lib/python/libpython.la
endif
if MYSQL_USE
icinga2_LDADD += \
-dlopen ${top_builddir}/components/db_ido_mysql/libdb_ido_mysql.la
endif