icinga2/icinga/Makefile.am

22 lines
498 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 = \
2012-04-13 11:32:19 +02:00
icinga.cpp
2012-04-01 09:31:03 +02:00
2012-04-13 11:32:19 +02:00
icinga_CFLAGS = -DI2_ICINGALAUNCHER_BUILD
2012-04-06 09:18:06 +02:00
2012-04-13 11:32:19 +02:00
icinga_CXXFLAGS = -DI2_ICINGALAUNCHER_BUILD -I${top_srcdir}/base \
2012-04-06 09:10:22 +02:00
-I${top_srcdir}/jsonrpc \
-I${top_srcdir}/cJSON \
2012-04-13 11:32:19 +02:00
-I${top_srcdir}/libicinga \
2012-04-06 09:10:22 +02:00
-I${top_srcdir}
2012-04-01 09:31:03 +02:00
2012-04-13 11:32:19 +02:00
icinga_LDFLAGS = $(top_builddir)/libicinga/libicinga.la \
$(top_builddir)/jsonrpc/libjsonrpc.la \
$(top_builddir)/base/libbase.la \
2012-04-13 11:32:19 +02:00
${top_builddir}/cJSON/libcJSON.la