mirror of https://github.com/Icinga/icinga2.git
34 lines
732 B
Makefile
34 lines
732 B
Makefile
|
## 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) \
|
||
|
-I${top_srcdir}/base \
|
||
|
-I${top_srcdir}/dyn \
|
||
|
-I${top_srcdir}/jsonrpc \
|
||
|
-I${top_srcdir}/icinga \
|
||
|
-I${top_srcdir}/cib
|
||
|
|
||
|
convenience_la_LDFLAGS = \
|
||
|
$(BOOST_LDFLAGS) \
|
||
|
-module \
|
||
|
-no-undefined \
|
||
|
@RELEASE_INFO@ \
|
||
|
@VERSION_INFO@
|
||
|
|
||
|
convenience_la_LIBADD = \
|
||
|
$(BOOST_SIGNALS_LIB) \
|
||
|
$(BOOST_THREAD_LIB) \
|
||
|
${top_builddir}/base/libbase.la \
|
||
|
${top_builddir}/dyn/libdyn.la \
|
||
|
${top_builddir}/jsonrpc/libjsonrpc.la \
|
||
|
${top_builddir}/icinga/libicinga.la \
|
||
|
${top_builddir}/cib/libcib.la
|