2012-06-14 11:23:25 +02:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
pkglib_LTLIBRARIES = \
|
|
|
|
checker.la
|
|
|
|
|
|
|
|
checker_la_SOURCES = \
|
|
|
|
checkercomponent.cpp \
|
|
|
|
checkercomponent.h \
|
|
|
|
i2-checker.h
|
|
|
|
|
|
|
|
checker_la_CPPFLAGS = \
|
|
|
|
$(BOOST_CPPFLAGS) \
|
|
|
|
-I${top_srcdir}/base \
|
|
|
|
-I${top_srcdir}/jsonrpc \
|
2012-07-02 12:34:54 +02:00
|
|
|
-I${top_srcdir}/icinga \
|
|
|
|
-I${top_srcdir}/cib
|
2012-06-14 11:23:25 +02:00
|
|
|
|
|
|
|
checker_la_LDFLAGS = \
|
|
|
|
$(BOOST_LDFLAGS) \
|
|
|
|
-module \
|
|
|
|
-no-undefined \
|
|
|
|
@RELEASE_INFO@ \
|
|
|
|
@VERSION_INFO@
|
|
|
|
|
|
|
|
checker_la_LIBADD = \
|
|
|
|
${top_builddir}/base/libbase.la \
|
2012-06-14 13:21:40 +02:00
|
|
|
${top_builddir}/jsonrpc/libjsonrpc.la \
|
2012-07-02 12:34:54 +02:00
|
|
|
${top_builddir}/icinga/libicinga.la \
|
|
|
|
${top_builddir}/cib/libcib.la
|