mirror of https://github.com/Icinga/icinga2.git
25 lines
463 B
Makefile
25 lines
463 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
noinst_LIBRARIES = \
|
|
libjsonrpc.a
|
|
|
|
libjsonrpc_a_SOURCES = \
|
|
cJSON.c \
|
|
cJSON.h \
|
|
connectionmanager.cpp \
|
|
connectionmanager.h \
|
|
i2-jsonrpc.h \
|
|
jsonrpcclient.cpp \
|
|
jsonrpcclient.h \
|
|
jsonrpcmessage.cpp \
|
|
jsonrpcmessage.h \
|
|
jsonrpcserver.cpp \
|
|
jsonrpcserver.h \
|
|
netstring.cpp \
|
|
netstring.h
|
|
|
|
libjsonrpc_a_CXXFLAGS = -I${top_srcdir}/base
|
|
|
|
libjsonrpc_a_LIBADD = $(top_builddir)/base/libbase.a
|