icinga2/components/delegation/Makefile.am

34 lines
724 B
Makefile
Raw Normal View History

2012-06-14 13:21:40 +02:00
## Process this file with automake to produce Makefile.in
pkglib_LTLIBRARIES = \
delegation.la
delegation_la_SOURCES = \
delegationcomponent.cpp \
delegationcomponent.h \
i2-delegation.h
delegation_la_CPPFLAGS = \
$(BOOST_CPPFLAGS) \
-I${top_srcdir}/base \
2012-07-06 14:33:10 +02:00
-I${top_srcdir}/dyn \
2012-06-14 13:21:40 +02:00
-I${top_srcdir}/jsonrpc \
-I${top_srcdir}/icinga \
-I${top_srcdir}/cib
2012-06-14 13:21:40 +02:00
delegation_la_LDFLAGS = \
$(BOOST_LDFLAGS) \
-module \
-no-undefined \
@RELEASE_INFO@ \
@VERSION_INFO@
delegation_la_LIBADD = \
2012-07-03 10:00:44 +02:00
$(BOOST_SIGNALS_LIB) \
$(BOOST_THREAD_LIB) \
2012-06-14 13:21:40 +02:00
${top_builddir}/base/libbase.la \
2012-07-06 14:33:10 +02:00
${top_builddir}/dyn/libdyn.la \
2012-06-14 13:21:40 +02:00
${top_builddir}/jsonrpc/libjsonrpc.la \
${top_builddir}/icinga/libicinga.la \
${top_builddir}/cib/libcib.la