icinga2/lib/remoting/Makefile.am

42 lines
826 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
2013-03-15 13:35:39 +01:00
.conf.cpp: $(top_builddir)/tools/mkembedconfig.c
$(top_builddir)/tools/mkembedconfig $< $@
2012-09-10 14:07:32 +02:00
libremoting_la_SOURCES = \
endpoint.cpp \
endpoint.h \
endpointmanager.cpp \
endpointmanager.h \
i2-remoting.h \
2013-04-04 16:08:02 +02:00
jsonrpc.cpp \
jsonrpc.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) \
2013-03-16 21:18:53 +01:00
-I${top_srcdir}/lib
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