2012-05-30 14:46:51 +02:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
|
|
|
|
pkglib_LTLIBRARIES = \
|
2012-09-07 10:27:31 +02:00
|
|
|
libconfig.la
|
2012-05-30 14:46:51 +02:00
|
|
|
|
2013-08-29 08:21:07 +02:00
|
|
|
BUILT_SOURCES = \
|
|
|
|
config_parser.h \
|
|
|
|
base-type.cpp
|
|
|
|
|
|
|
|
CLEANFILES = \
|
|
|
|
base-type.cpp
|
2012-05-31 09:43:46 +02:00
|
|
|
|
|
|
|
AM_YFLAGS = -d
|
|
|
|
|
2013-03-12 13:45:54 +01:00
|
|
|
EXTRA_DIST = \
|
2013-04-19 13:17:17 +02:00
|
|
|
base-type.conf
|
2013-03-12 13:45:54 +01:00
|
|
|
|
2013-08-29 08:21:07 +02:00
|
|
|
.conf.cpp: $(top_builddir)/tools/mkembedconfig/mkembedconfig
|
2013-06-24 15:57:11 +02:00
|
|
|
$(top_builddir)/tools/mkembedconfig/mkembedconfig $< $@
|
2013-03-12 13:45:54 +01:00
|
|
|
|
2012-09-07 10:27:31 +02:00
|
|
|
libconfig_la_SOURCES = \
|
2013-03-12 13:45:54 +01:00
|
|
|
base-type.cpp \
|
2012-06-06 14:38:28 +02:00
|
|
|
configcompiler.cpp \
|
|
|
|
configcompiler.h \
|
2013-02-05 13:06:42 +01:00
|
|
|
configcompilercontext.cpp \
|
|
|
|
configcompilercontext.h \
|
2012-05-31 09:49:12 +02:00
|
|
|
config_lexer.ll \
|
2012-05-31 09:43:46 +02:00
|
|
|
config_parser.yy \
|
2012-09-07 10:27:31 +02:00
|
|
|
i2-config.h \
|
2012-06-06 14:38:28 +02:00
|
|
|
configitem.cpp \
|
|
|
|
configitem.h \
|
2012-07-06 14:33:10 +02:00
|
|
|
configitembuilder.cpp \
|
|
|
|
configitembuilder.h \
|
2013-02-02 14:28:11 +01:00
|
|
|
configtype.cpp \
|
|
|
|
configtype.h \
|
2012-06-17 03:04:59 +02:00
|
|
|
debuginfo.h \
|
2012-06-01 16:49:33 +02:00
|
|
|
expression.cpp \
|
|
|
|
expression.h \
|
|
|
|
expressionlist.cpp \
|
2013-02-02 14:28:11 +01:00
|
|
|
expressionlist.h \
|
|
|
|
typerule.cpp \
|
|
|
|
typerule.h \
|
|
|
|
typerulelist.cpp \
|
|
|
|
typerulelist.h
|
2012-05-30 14:46:51 +02:00
|
|
|
|
2012-09-07 10:27:31 +02:00
|
|
|
libconfig_la_CPPFLAGS = \
|
|
|
|
-DI2_CONFIG_BUILD \
|
2013-07-02 16:56:01 +02:00
|
|
|
$(LTDLINCL) \
|
2012-05-30 14:46:51 +02:00
|
|
|
$(BOOST_CPPFLAGS) \
|
2013-03-16 21:18:53 +01:00
|
|
|
-I${top_srcdir}/lib
|
2012-05-30 14:46:51 +02:00
|
|
|
|
2012-09-07 10:27:31 +02:00
|
|
|
libconfig_la_LDFLAGS = \
|
2012-05-30 14:46:51 +02:00
|
|
|
$(BOOST_LDFLAGS) \
|
|
|
|
-no-undefined \
|
|
|
|
@RELEASE_INFO@ \
|
|
|
|
@VERSION_INFO@
|
|
|
|
|
2012-09-07 10:27:31 +02:00
|
|
|
libconfig_la_LIBADD = \
|
2013-03-14 15:14:07 +01:00
|
|
|
$(BOOST_THREAD_LIB) \
|
|
|
|
$(BOOST_SYSTEM_LIB) \
|
2012-09-07 10:27:31 +02:00
|
|
|
${top_builddir}/lib/base/libbase.la
|