icinga2/components/compatido/Makefile.am

35 lines
857 B
Makefile
Raw Normal View History

2012-09-15 12:51:40 +02:00
## Process this file with automake to produce Makefile.in
pkglib_LTLIBRARIES = \
compatido.la
compatido_la_SOURCES = \
compatidocomponent.cpp \
2012-11-22 12:04:32 +01:00
compatidocomponent.h \
i2-compatido.h \
idoconnection.cpp \
idoconnection.h
2012-09-15 12:51:40 +02:00
compatido_la_CPPFLAGS = \
$(BOOST_CPPFLAGS) \
-I${top_srcdir}/lib/base \
-I${top_srcdir}/lib/config \
-I${top_srcdir}/lib/remoting \
-I${top_srcdir}/lib/icinga
2012-09-15 12:51:40 +02:00
compatido_la_LDFLAGS = \
$(BOOST_LDFLAGS) \
-module \
-no-undefined \
@RELEASE_INFO@ \
@VERSION_INFO@
compatido_la_LIBADD = \
$(BOOST_SIGNALS_LIB) \
$(BOOST_THREAD_LIB) \
${top_builddir}/lib/base/libbase.la \
${top_builddir}/lib/config/libconfig.la \
${top_builddir}/lib/remoting/libremoting.la \
${top_builddir}/lib/icinga/libicinga.la
2012-09-15 12:51:40 +02:00