2001-08-21 04:54:17 -05:00
|
|
|
SUBDIRS = . test
|
2001-08-07 18:29:04 -05:00
|
|
|
|
2006-06-01 20:50:02 -05:00
|
|
|
# Now a shared library AND a GModule
|
2008-08-01 11:02:07 -05:00
|
|
|
lib_LTLIBRARIES = libgnc-backend-xml-utils.la
|
|
|
|
pkglib_LTLIBRARIES = libgncmod-backend-xml.la
|
2001-08-07 18:29:04 -05:00
|
|
|
|
2008-10-25 15:30:47 -05:00
|
|
|
AM_CPPFLAGS = \
|
2001-08-21 04:54:17 -05:00
|
|
|
-I.. -I../.. \
|
2005-11-01 21:32:36 -06:00
|
|
|
-DLOCALE_DIR=\""$(datadir)/locale"\" \
|
2016-05-21 13:01:53 -05:00
|
|
|
-DU_SHOW_CPLUSPLUS_API=0 \
|
2017-08-10 06:56:00 -05:00
|
|
|
-I${top_srcdir}/libgnucash/backend \
|
|
|
|
-I${top_srcdir}/libgnucash/engine \
|
|
|
|
-I${top_srcdir}/libgnucash/core-utils \
|
|
|
|
-I${top_srcdir}/libgnucash/gnc-module \
|
2017-08-17 08:25:41 -05:00
|
|
|
-I${top_srcdir}/borrowed/libc\
|
2017-08-10 06:56:00 -05:00
|
|
|
-I$(top_srcdir)/common \
|
2008-10-25 15:30:47 -05:00
|
|
|
${LIBXML2_CFLAGS} \
|
2015-07-12 00:05:28 -05:00
|
|
|
${GLIB_CFLAGS} \
|
|
|
|
${BOOST_CPPFLAGS}
|
2001-08-07 18:29:04 -05:00
|
|
|
|
2008-08-01 11:02:07 -05:00
|
|
|
libgnc_backend_xml_utils_la_SOURCES = \
|
2015-11-29 19:11:29 -06:00
|
|
|
gnc-account-xml-v2.cpp \
|
|
|
|
gnc-address-xml-v2.cpp \
|
|
|
|
gnc-bill-term-xml-v2.cpp \
|
|
|
|
gnc-book-xml-v2.cpp \
|
|
|
|
gnc-budget-xml-v2.cpp \
|
|
|
|
gnc-commodity-xml-v2.cpp \
|
|
|
|
gnc-customer-xml-v2.cpp \
|
|
|
|
gnc-employee-xml-v2.cpp \
|
|
|
|
gnc-entry-xml-v2.cpp \
|
|
|
|
gnc-freqspec-xml-v2.cpp \
|
|
|
|
gnc-invoice-xml-v2.cpp \
|
|
|
|
gnc-job-xml-v2.cpp \
|
|
|
|
gnc-lot-xml-v2.cpp \
|
|
|
|
gnc-order-xml-v2.cpp \
|
|
|
|
gnc-owner-xml-v2.cpp \
|
|
|
|
gnc-pricedb-xml-v2.cpp \
|
|
|
|
gnc-recurrence-xml-v2.cpp \
|
|
|
|
gnc-schedxaction-xml-v2.cpp \
|
|
|
|
gnc-tax-table-xml-v2.cpp \
|
|
|
|
gnc-transaction-xml-v2.cpp \
|
|
|
|
gnc-vendor-xml-v2.cpp \
|
2016-11-21 11:55:39 -06:00
|
|
|
gnc-xml-backend.cpp \
|
2015-11-29 19:11:29 -06:00
|
|
|
gnc-xml-helper.cpp \
|
|
|
|
io-example-account.cpp \
|
|
|
|
io-gncxml-gen.cpp \
|
2015-06-14 14:45:36 -05:00
|
|
|
io-gncxml-v1.cpp \
|
2015-11-29 19:11:29 -06:00
|
|
|
io-gncxml-v2.cpp \
|
|
|
|
io-utils.cpp \
|
2015-06-13 16:21:19 -05:00
|
|
|
sixtp-dom-generators.cpp \
|
|
|
|
sixtp-dom-parsers.cpp \
|
2015-11-29 19:11:29 -06:00
|
|
|
sixtp-stack.cpp \
|
|
|
|
sixtp-to-dom-parser.cpp \
|
|
|
|
sixtp-utils.cpp \
|
|
|
|
sixtp.cpp
|
2001-08-21 04:54:17 -05:00
|
|
|
|
2008-08-01 11:02:07 -05:00
|
|
|
libgncmod_backend_xml_la_SOURCES = \
|
2015-11-29 19:11:29 -06:00
|
|
|
gnc-backend-xml.cpp
|
2006-06-01 20:50:02 -05:00
|
|
|
|
2001-08-21 04:54:17 -05:00
|
|
|
noinst_HEADERS = \
|
2009-04-12 12:14:21 -05:00
|
|
|
gnc-backend-xml.h \
|
2001-08-21 04:54:17 -05:00
|
|
|
gnc-xml.h \
|
2010-07-13 04:55:46 -05:00
|
|
|
gnc-address-xml-v2.h \
|
|
|
|
gnc-bill-term-xml-v2.h \
|
|
|
|
gnc-customer-xml-v2.h \
|
|
|
|
gnc-employee-xml-v2.h \
|
|
|
|
gnc-entry-xml-v2.h \
|
|
|
|
gnc-invoice-xml-v2.h \
|
|
|
|
gnc-job-xml-v2.h \
|
|
|
|
gnc-order-xml-v2.h \
|
|
|
|
gnc-owner-xml-v2.h \
|
|
|
|
gnc-tax-table-xml-v2.h \
|
|
|
|
gnc-vendor-xml-v2.h \
|
2016-11-21 11:55:39 -06:00
|
|
|
gnc-xml-backend.hpp \
|
2001-08-21 04:54:17 -05:00
|
|
|
gnc-xml-helper.h \
|
|
|
|
io-example-account.h \
|
|
|
|
io-gncxml-gen.h \
|
|
|
|
io-gncxml-v2.h \
|
2010-07-13 04:55:46 -05:00
|
|
|
io-gncxml.h \
|
2001-08-21 04:54:17 -05:00
|
|
|
io-utils.h \
|
|
|
|
sixtp-dom-generators.h \
|
|
|
|
sixtp-dom-parsers.h \
|
|
|
|
sixtp-parsers.h \
|
|
|
|
sixtp-stack.h \
|
2010-07-13 04:55:46 -05:00
|
|
|
sixtp-utils.h \
|
|
|
|
sixtp.h \
|
|
|
|
xml-helpers.h
|
2001-08-07 18:29:04 -05:00
|
|
|
|
2008-08-01 11:02:07 -05:00
|
|
|
libgnc_backend_xml_utils_la_LIBADD = \
|
2009-04-06 19:48:53 -05:00
|
|
|
${GLIB_LIBS} \
|
|
|
|
${LIBXML2_LIBS} \
|
|
|
|
${ZLIB_LIBS} \
|
2017-08-10 06:56:00 -05:00
|
|
|
${top_builddir}/libgnucash/engine/libgncmod-engine.la \
|
|
|
|
${top_builddir}/libgnucash/core-utils/libgnc-core-utils.la
|
2006-06-01 20:50:02 -05:00
|
|
|
|
2008-08-01 11:02:07 -05:00
|
|
|
libgncmod_backend_xml_la_LDFLAGS = -module -avoid-version
|
|
|
|
libgncmod_backend_xml_la_LIBADD = \
|
2009-04-06 19:48:53 -05:00
|
|
|
${GLIB_LIBS} \
|
|
|
|
${LIBXML2_LIBS} \
|
|
|
|
${ZLIB_LIBS} \
|
2017-08-10 06:56:00 -05:00
|
|
|
${top_builddir}/libgnucash/engine/libgncmod-engine.la \
|
|
|
|
${top_builddir}/libgnucash/core-utils/libgnc-core-utils.la \
|
2017-08-06 10:12:16 -05:00
|
|
|
libgnc-backend-xml-utils.la
|
2007-02-09 11:35:00 -06:00
|
|
|
|
2012-11-06 21:08:15 -06:00
|
|
|
AM_CPPFLAGS += -DG_LOG_DOMAIN=\"gnc.backend.xml\"
|
2017-07-10 13:06:31 -05:00
|
|
|
|
|
|
|
EXTRA_DIST = CMakeLists.txt
|