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 \
|
2012-04-18 15:42:21 +02:00
|
|
|
jsonrpcrequest.cpp \
|
|
|
|
jsonrpcrequest.h \
|
|
|
|
jsonrpcresponse.cpp \
|
|
|
|
jsonrpcresponse.h \
|
2012-03-28 13:24:49 +02:00
|
|
|
jsonrpcserver.cpp \
|
|
|
|
jsonrpcserver.h \
|
2012-04-18 15:42:21 +02:00
|
|
|
message.cpp \
|
|
|
|
message.h \
|
2012-03-28 13:24:49 +02:00
|
|
|
netstring.cpp \
|
|
|
|
netstring.h
|
|
|
|
|
2012-05-09 12:10:07 +02:00
|
|
|
libjsonrpc_la_CXXFLAGS = \
|
|
|
|
-DI2_JSONRPC_BUILD \
|
|
|
|
-I${top_srcdir}/base \
|
|
|
|
-I${top_srcdir}/cJSON
|
|
|
|
|
|
|
|
libjsonrpc_la_LDFLAGS = \
|
|
|
|
-no-undefined \
|
|
|
|
-version-info 0:0:0
|
|
|
|
|
|
|
|
libjsonrpc_la_LIBADD = \
|
|
|
|
${top_builddir}/base/libbase.la \
|
|
|
|
${top_builddir}/cJSON/libcJSON.la
|