icinga2/dyn/Makefile.am

40 lines
664 B
Makefile
Raw Normal View History

2012-05-30 14:46:51 +02:00
## Process this file with automake to produce Makefile.in
pkglib_LTLIBRARIES = \
libdyn.la
2012-05-31 09:43:46 +02:00
BUILT_SOURCES = config_parser.h
AM_YFLAGS = -d
2012-05-30 14:46:51 +02:00
libdyn_la_SOURCES = \
configcompiler.cpp \
configcompiler.h \
2012-05-31 09:49:12 +02:00
config_lexer.ll \
2012-05-31 09:43:46 +02:00
config_parser.yy \
2012-05-30 14:46:51 +02:00
i2-dyn.h \
configitem.cpp \
configitem.h \
2012-07-06 14:33:10 +02:00
configitembuilder.cpp \
configitembuilder.h \
2012-06-17 03:04:59 +02:00
debuginfo.h \
expression.cpp \
expression.h \
expressionlist.cpp \
expressionlist.h
2012-05-30 14:46:51 +02:00
libdyn_la_CPPFLAGS = \
-DI2_DYN_BUILD \
$(BOOST_CPPFLAGS) \
-I${top_srcdir}/base
libdyn_la_LDFLAGS = \
$(BOOST_LDFLAGS) \
-no-undefined \
@RELEASE_INFO@ \
@VERSION_INFO@
libdyn_la_LIBADD = \
${top_builddir}/base/libbase.la