]> granicus.if.org Git - icinga2/blob - lib/remoting/Makefile.am
Removed PCH support (as it's clearly not working properly).
[icinga2] / lib / remoting / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3
4 pkglib_LTLIBRARIES = \
5         libremoting.la
6
7 libremoting_la_SOURCES = \
8         endpoint.cpp \
9         endpoint.h \
10         endpointmanager.cpp \
11         endpointmanager.h \
12         i2-remoting.cpp \
13         i2-remoting.h \
14         jsonrpcconnection.cpp \
15         jsonrpcconnection.h \
16         messagepart.cpp \
17         messagepart.h \
18         requestmessage.cpp \
19         requestmessage.h \
20         responsemessage.cpp \
21         responsemessage.h
22
23 libremoting_la_CPPFLAGS = \
24         -DI2_REMOTING_BUILD \
25         $(BOOST_CPPFLAGS) \
26         -I${top_srcdir}/lib/base \
27         -I${top_srcdir}/lib/config
28
29 libremoting_la_LDFLAGS = \
30         $(BOOST_LDFLAGS) \
31         -no-undefined \
32         @RELEASE_INFO@ \
33         @VERSION_INFO@
34
35 libremoting_la_LIBADD = \
36         ${top_builddir}/lib/base/libbase.la \
37         ${top_builddir}/lib/config/libconfig.la