icinga2/lib/remoting/Makefile.am

44 lines
898 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
.conf.cpp: $(top_builddir)/tools/mkembedconfig
$(top_builddir)/tools/mkembedconfig $< $@
2012-09-10 14:07:32 +02:00
libremoting_la_SOURCES = \
endpoint.cpp \
endpoint.h \
endpointmanager.cpp \
endpointmanager.h \
2013-02-14 14:58:26 +01:00
i2-remoting.cpp \
2012-09-10 14:07:32 +02:00
i2-remoting.h \
2012-11-22 12:04:32 +01:00
jsonrpcconnection.cpp \
jsonrpcconnection.h \
2012-05-16 11:30:54 +02:00
messagepart.cpp \
messagepart.h \
remoting-type.cpp \
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 = \
2013-03-14 15:14:07 +01:00
$(BOOST_THREAD_LIB) \
$(BOOST_SYSTEM_LIB) \
2012-09-10 14:07:32 +02:00
${top_builddir}/lib/base/libbase.la \
${top_builddir}/lib/config/libconfig.la