icinga2/lib/remoting/Makefile.am

39 lines
753 B
Makefile
Raw Normal View History

2012-03-28 13:24:49 +02:00
## Process this file with automake to produce Makefile.in
2012-05-09 12:10:07 +02:00
pkglib_LTLIBRARIES = \
2012-09-10 14:07:32 +02:00
libremoting.la
2012-03-28 13:24:49 +02:00
2012-09-10 14:07:32 +02:00
libremoting_la_SOURCES = \
endpoint.cpp \
endpoint.h \
endpointmanager.cpp \
endpointmanager.h \
i2-remoting.h \
2012-03-28 13:24:49 +02:00
jsonrpcclient.cpp \
jsonrpcclient.h \
jsonrpcserver.cpp \
jsonrpcserver.h \
2012-05-16 11:30:54 +02:00
messagepart.cpp \
messagepart.h \
requestmessage.cpp \
requestmessage.h \
responsemessage.cpp \
responsemessage.h
2012-03-28 13:24:49 +02:00
2012-09-10 14:07:32 +02:00
libremoting_la_CPPFLAGS = \
-DI2_REMOTING_BUILD \
2012-05-25 22:04:03 +02:00
$(BOOST_CPPFLAGS) \
2012-09-10 14:07:32 +02:00
-I${top_srcdir}/lib/base \
-I${top_srcdir}/lib/config
2012-05-09 12:10:07 +02:00
2012-09-10 14:07:32 +02:00
libremoting_la_LDFLAGS = \
2012-05-29 16:24:55 +02:00
$(BOOST_LDFLAGS) \
2012-05-09 12:10:07 +02:00
-no-undefined \
@RELEASE_INFO@ \
@VERSION_INFO@
2012-05-09 12:10:07 +02:00
2012-09-10 14:07:32 +02:00
libremoting_la_LIBADD = \
${top_builddir}/lib/base/libbase.la \
${top_builddir}/lib/config/libconfig.la