2012-07-06 11:22:38 +02:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
pkglib_LTLIBRARIES = \
|
|
|
|
convenience.la
|
|
|
|
|
|
|
|
convenience_la_SOURCES = \
|
|
|
|
conveniencecomponent.cpp \
|
|
|
|
conveniencecomponent.h \
|
|
|
|
i2-convenience.h
|
|
|
|
|
|
|
|
convenience_la_CPPFLAGS = \
|
|
|
|
$(BOOST_CPPFLAGS) \
|
2012-09-07 10:27:31 +02:00
|
|
|
-I${top_srcdir}/lib/base \
|
|
|
|
-I${top_srcdir}/lib/config \
|
|
|
|
-I${top_srcdir}/lib/jsonrpc \
|
|
|
|
-I${top_srcdir}/lib/icinga \
|
|
|
|
-I${top_srcdir}/lib/cib
|
2012-07-06 11:22:38 +02:00
|
|
|
|
|
|
|
convenience_la_LDFLAGS = \
|
|
|
|
$(BOOST_LDFLAGS) \
|
|
|
|
-module \
|
|
|
|
-no-undefined \
|
|
|
|
@RELEASE_INFO@ \
|
|
|
|
@VERSION_INFO@
|
|
|
|
|
|
|
|
convenience_la_LIBADD = \
|
|
|
|
$(BOOST_SIGNALS_LIB) \
|
|
|
|
$(BOOST_THREAD_LIB) \
|
2012-09-07 10:27:31 +02:00
|
|
|
${top_builddir}/lib/base/libbase.la \
|
|
|
|
${top_builddir}/lib/config/libconfig.la \
|
|
|
|
${top_builddir}/lib/jsonrpc/libjsonrpc.la \
|
|
|
|
${top_builddir}/lib/icinga/libicinga.la \
|
|
|
|
${top_builddir}/lib/cib/libcib.la
|