icinga2/components/demo/Makefile.am

32 lines
620 B
Makefile
Raw Normal View History

2012-04-23 13:45:41 +02:00
## Process this file with automake to produce Makefile.in
2012-05-09 12:10:07 +02:00
pkglib_LTLIBRARIES = \
2012-04-23 13:45:41 +02:00
demo.la
2012-05-09 12:10:07 +02:00
demo_la_SOURCES = \
2012-04-23 13:45:41 +02:00
democomponent.cpp \
democomponent.h \
i2-demo.h
2012-05-29 11:38:51 +02:00
demo_la_CPPFLAGS = \
2012-05-25 22:04:03 +02:00
$(BOOST_CPPFLAGS) \
2012-05-09 12:10:07 +02:00
-I${top_srcdir}/base \
2012-07-06 14:33:10 +02:00
-I${top_srcdir}/dyn \
2012-04-23 13:45:41 +02:00
-I${top_srcdir}/jsonrpc \
-I${top_srcdir}/icinga
2012-05-09 12:10:07 +02:00
demo_la_LDFLAGS = \
2012-05-29 16:24:55 +02:00
$(BOOST_LDFLAGS) \
2012-05-09 12:10:07 +02:00
-module \
-no-undefined \
@RELEASE_INFO@ \
@VERSION_INFO@
2012-05-09 12:10:07 +02:00
demo_la_LIBADD = \
2012-07-03 10:00:44 +02:00
$(BOOST_SIGNALS_LIB) \
$(BOOST_THREAD_LIB) \
2012-05-09 12:10:07 +02:00
${top_builddir}/base/libbase.la \
2012-07-06 14:33:10 +02:00
${top_builddir}/dyn/libdyn.la \
2012-04-23 13:45:41 +02:00
${top_builddir}/jsonrpc/libjsonrpc.la \
${top_builddir}/icinga/libicinga.la