icinga2/components/configrpc/Makefile.am

27 lines
565 B
Makefile
Raw Normal View History

2012-04-01 09:31:03 +02:00
## Process this file with automake to produce Makefile.in
2012-05-09 12:10:07 +02:00
pkglib_LTLIBRARIES = \
2012-04-13 13:10:35 +02:00
configrpc.la
2012-04-01 09:31:03 +02:00
2012-05-09 12:10:07 +02:00
configrpc_la_SOURCES = \
2012-04-01 09:31:03 +02:00
configrpccomponent.cpp \
configrpccomponent.h \
2012-04-13 13:10:35 +02:00
i2-configrpc.h
2012-04-01 09:31:03 +02:00
2012-05-09 12:10:07 +02:00
configrpc_la_CXXFLAGS = \
-I${top_srcdir}/base \
2012-04-06 09:10:22 +02:00
-I${top_srcdir}/jsonrpc \
-I${top_srcdir}/cJSON \
2012-04-13 11:49:49 +02:00
-I${top_srcdir}/icinga
2012-05-09 12:10:07 +02:00
configrpc_la_LDFLAGS = \
-module \
-no-undefined \
-version-info 0:0:0
configrpc_la_LIBADD = \
${top_builddir}/base/libbase.la \
${top_builddir}/jsonrpc/libjsonrpc.la \
2012-04-13 11:08:33 +02:00
${top_builddir}/cJSON/libcJSON.la \
2012-04-13 11:49:49 +02:00
${top_builddir}/icinga/libicinga.la