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-04-02 10:29:08 +02:00
|
|
|
libjsonrpc.la
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2012-05-09 12:10:07 +02:00
|
|
|
libjsonrpc_la_SOURCES = \
|
2012-03-28 13:24:49 +02:00
|
|
|
i2-jsonrpc.h \
|
|
|
|
jsonrpcclient.cpp \
|
|
|
|
jsonrpcclient.h \
|
|
|
|
jsonrpcserver.cpp \
|
|
|
|
jsonrpcserver.h \
|
2012-05-16 11:30:54 +02:00
|
|
|
messagepart.cpp \
|
|
|
|
messagepart.h \
|
2012-03-28 13:24:49 +02:00
|
|
|
netstring.cpp \
|
2012-05-15 16:24:04 +02:00
|
|
|
netstring.h \
|
2012-05-21 12:53:38 +02:00
|
|
|
requestmessage.cpp \
|
|
|
|
requestmessage.h \
|
|
|
|
responsemessage.cpp \
|
|
|
|
responsemessage.h
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2012-05-29 11:38:51 +02:00
|
|
|
libjsonrpc_la_CPPFLAGS = \
|
2012-05-09 12:10:07 +02:00
|
|
|
-DI2_JSONRPC_BUILD \
|
2012-05-25 22:04:03 +02:00
|
|
|
$(BOOST_CPPFLAGS) \
|
2012-05-09 12:10:07 +02:00
|
|
|
-I${top_srcdir}/base \
|
2012-05-29 11:38:51 +02:00
|
|
|
-I${top_srcdir}/third-party/cJSON
|
2012-05-09 12:10:07 +02:00
|
|
|
|
|
|
|
libjsonrpc_la_LDFLAGS = \
|
2012-05-29 16:24:55 +02:00
|
|
|
$(BOOST_LDFLAGS) \
|
2012-05-09 12:10:07 +02:00
|
|
|
-no-undefined \
|
2012-05-27 19:45:40 +02:00
|
|
|
@RELEASE_INFO@ \
|
|
|
|
@VERSION_INFO@
|
2012-05-09 12:10:07 +02:00
|
|
|
|
|
|
|
libjsonrpc_la_LIBADD = \
|
|
|
|
${top_builddir}/base/libbase.la \
|
2012-05-29 11:38:51 +02:00
|
|
|
${top_builddir}/third-party/cJSON/libcJSON.la
|