icinga2/lib/config/Makefile.am

58 lines
1.0 KiB
Makefile

## Process this file with automake to produce Makefile.in
pkglib_LTLIBRARIES = \
libconfig.la
BUILT_SOURCES = config_parser.h
AM_YFLAGS = -d
EXTRA_DIST = \
base-type.conf \
i2-config.cpp
.conf.cpp: $(top_builddir)/tools/mkembedconfig.c
$(top_builddir)/tools/mkembedconfig $< $@
libconfig_la_SOURCES = \
base-type.cpp \
configcompiler.cpp \
configcompiler.h \
configcompilercontext.cpp \
configcompilercontext.h \
config_lexer.ll \
config_parser.yy \
i2-config.h \
configitem.cpp \
configitem.h \
configitembuilder.cpp \
configitembuilder.h \
configtype.cpp \
configtype.h \
debuginfo.h \
expression.cpp \
expression.h \
expressionlist.cpp \
expressionlist.h \
typerule.cpp \
typerule.h \
typerulelist.cpp \
typerulelist.h
libconfig_la_CPPFLAGS = \
-DI2_CONFIG_BUILD \
$(BOOST_CPPFLAGS) \
-I${top_srcdir}/lib
libconfig_la_LDFLAGS = \
$(BOOST_LDFLAGS) \
-no-undefined \
@RELEASE_INFO@ \
@VERSION_INFO@
libconfig_la_LIBADD = \
$(BOOST_THREAD_LIB) \
$(BOOST_SYSTEM_LIB) \
${top_builddir}/lib/base/libbase.la