2012-06-27 18:43:34 +02:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
pkglib_LTLIBRARIES = \
|
|
|
|
compat.la
|
|
|
|
|
|
|
|
compat_la_SOURCES = \
|
|
|
|
compatcomponent.cpp \
|
|
|
|
compatcomponent.h \
|
|
|
|
i2-compat.h
|
|
|
|
|
|
|
|
compat_la_CPPFLAGS = \
|
|
|
|
$(BOOST_CPPFLAGS) \
|
2012-09-07 10:27:31 +02:00
|
|
|
-I${top_srcdir}/lib/base \
|
|
|
|
-I${top_srcdir}/lib/config \
|
2012-09-10 14:07:32 +02:00
|
|
|
-I${top_srcdir}/lib/remoting \
|
|
|
|
-I${top_srcdir}/lib/icinga
|
2012-06-27 18:43:34 +02:00
|
|
|
|
|
|
|
compat_la_LDFLAGS = \
|
|
|
|
$(BOOST_LDFLAGS) \
|
|
|
|
-module \
|
|
|
|
-no-undefined \
|
|
|
|
@RELEASE_INFO@ \
|
|
|
|
@VERSION_INFO@
|
|
|
|
|
|
|
|
compat_la_LIBADD = \
|
2012-07-03 10:00:44 +02:00
|
|
|
$(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 \
|
2012-09-10 14:07:32 +02:00
|
|
|
${top_builddir}/lib/remoting/libremoting.la \
|
|
|
|
${top_builddir}/lib/icinga/libicinga.la
|