icinga2/components/perfdata/Makefile.am

48 lines
1.0 KiB
Makefile
Raw Normal View History

2013-10-14 20:12:42 +02:00
## Process this file with automake to produce Makefile.in
pkglib_LTLIBRARIES = \
libperfdata.la
2013-10-26 09:41:45 +02:00
BUILT_SOURCES = \
graphitewriter.th \
perfdatawriter.th
2013-10-30 12:18:08 +01:00
nodist_libperfdata_la_SOURCES = $(BUILT_SOURCES)
2013-10-14 20:12:42 +02:00
CLEANFILES = \
perfdata-type.cpp
.conf.cpp: $(top_builddir)/tools/mkembedconfig/mkembedconfig
$(top_builddir)/tools/mkembedconfig/mkembedconfig $< $@
2013-10-26 09:41:45 +02:00
.ti.th: $(top_builddir)/tools/mkclass/mkclass
2013-10-30 12:18:08 +01:00
$(top_builddir)/tools/mkclass/mkclass $< > $@.tmp && mv $@.tmp $@
2013-10-26 09:41:45 +02:00
2013-10-14 20:12:42 +02:00
libperfdata_la_SOURCES = \
graphitewriter.cpp \
graphitewriter.h \
2013-10-26 09:41:45 +02:00
graphitewriter.ti \
2013-10-14 20:12:42 +02:00
perfdatawriter.cpp \
perfdatawriter.h \
2013-10-30 12:18:08 +01:00
perfdatawriter.ti \
2013-10-14 20:12:42 +02:00
perfdata-type.conf
libperfdata_la_CPPFLAGS = \
$(BOOST_CPPFLAGS) \
-I${top_srcdir}/lib \
-I${top_srcdir}/components
libperfdata_la_LDFLAGS = \
$(BOOST_LDFLAGS) \
-no-undefined \
@RELEASE_INFO@ \
@VERSION_INFO@
libperfdata_la_LIBADD = \
$(BOOST_THREAD_LIB) \
$(BOOST_SYSTEM_LIB) \
${top_builddir}/lib/base/libbase.la \
${top_builddir}/lib/config/libconfig.la \
${top_builddir}/lib/icinga/libicinga.la