icinga2/components/demo/Makefile.am

26 lines
488 B
Makefile
Raw Normal View History

2012-04-23 13:45:41 +02:00
## Process this file with automake to produce Makefile.in
2012-05-09 12:10:07 +02:00
pkglib_LTLIBRARIES = \
2012-04-23 13:45:41 +02:00
demo.la
2012-05-09 12:10:07 +02:00
demo_la_SOURCES = \
2012-04-23 13:45:41 +02:00
democomponent.cpp \
democomponent.h \
i2-demo.h
2012-05-09 12:10:07 +02:00
demo_la_CXXFLAGS = \
-I${top_srcdir}/base \
2012-04-23 13:45:41 +02:00
-I${top_srcdir}/jsonrpc \
-I${top_srcdir}/cJSON \
-I${top_srcdir}/icinga
2012-05-09 12:10:07 +02:00
demo_la_LDFLAGS = \
-module \
-no-undefined \
-version-info 0:0:0
demo_la_LIBADD = \
${top_builddir}/base/libbase.la \
2012-04-23 13:45:41 +02:00
${top_builddir}/jsonrpc/libjsonrpc.la \
${top_builddir}/icinga/libicinga.la