2012-01-06 18:53:43 -06:00
|
|
|
include $(top_srcdir)/test-templates/Makefile.decl
|
2008-08-01 11:02:07 -05:00
|
|
|
SUBDIRS = . test
|
2012-01-06 18:53:43 -06:00
|
|
|
TEST_SUBDIRS = test
|
2008-08-01 11:02:07 -05:00
|
|
|
|
|
|
|
# Now a shared library AND a GModule
|
|
|
|
lib_LTLIBRARIES = libgnc-backend-sql.la
|
|
|
|
|
2017-08-10 06:56:00 -05:00
|
|
|
# "${top_srcdir}/common/debug" below is for the splint header
|
2012-11-06 21:08:15 -06:00
|
|
|
AM_CPPFLAGS = \
|
2008-08-01 11:02:07 -05:00
|
|
|
-I.. -I../.. \
|
|
|
|
-DLOCALE_DIR=\""$(datadir)/locale"\" \
|
2017-08-10 06:56:00 -05:00
|
|
|
-I${top_srcdir}/libgnucash/backend \
|
|
|
|
-I${top_srcdir}/common/debug \
|
|
|
|
-I${top_srcdir}/libgnucash/engine \
|
|
|
|
-I${top_srcdir}/libgnucash/core-utils\
|
2017-08-17 08:25:41 -05:00
|
|
|
-I${top_srcdir}/borrowed/libc\
|
2008-08-01 11:02:07 -05:00
|
|
|
${GLIB_CFLAGS} \
|
2013-11-13 09:51:24 -06:00
|
|
|
${GUILE_CFLAGS} \
|
2015-07-12 00:05:28 -05:00
|
|
|
${WARN_CFLAGS} \
|
|
|
|
${BOOST_CPPFLAGS}
|
2008-08-01 11:02:07 -05:00
|
|
|
|
|
|
|
libgnc_backend_sql_la_SOURCES = \
|
2015-11-28 15:40:55 -06:00
|
|
|
gnc-account-sql.cpp \
|
|
|
|
gnc-address-sql.cpp \
|
|
|
|
gnc-bill-term-sql.cpp \
|
|
|
|
gnc-book-sql.cpp \
|
|
|
|
gnc-budget-sql.cpp \
|
|
|
|
gnc-commodity-sql.cpp \
|
|
|
|
gnc-customer-sql.cpp \
|
|
|
|
gnc-employee-sql.cpp \
|
|
|
|
gnc-entry-sql.cpp \
|
|
|
|
gnc-invoice-sql.cpp \
|
|
|
|
gnc-job-sql.cpp \
|
|
|
|
gnc-lots-sql.cpp \
|
|
|
|
gnc-order-sql.cpp \
|
|
|
|
gnc-owner-sql.cpp \
|
|
|
|
gnc-price-sql.cpp \
|
|
|
|
gnc-recurrence-sql.cpp \
|
|
|
|
gnc-schedxaction-sql.cpp \
|
2015-06-13 16:21:19 -05:00
|
|
|
gnc-slots-sql.cpp \
|
2015-11-28 15:40:55 -06:00
|
|
|
gnc-tax-table-sql.cpp \
|
|
|
|
gnc-transaction-sql.cpp \
|
|
|
|
gnc-vendor-sql.cpp \
|
2016-11-01 13:58:21 -05:00
|
|
|
gnc-sql-backend.cpp \
|
|
|
|
gnc-sql-result.cpp \
|
|
|
|
gnc-sql-column-table-entry.cpp \
|
|
|
|
gnc-sql-object-backend.cpp \
|
2015-11-28 15:40:55 -06:00
|
|
|
escape.cpp
|
2008-08-01 11:02:07 -05:00
|
|
|
|
|
|
|
noinst_HEADERS = \
|
|
|
|
gnc-account-sql.h \
|
2010-07-14 14:39:19 -05:00
|
|
|
gnc-bill-term-sql.h \
|
2008-08-01 11:02:07 -05:00
|
|
|
gnc-book-sql.h \
|
|
|
|
gnc-budget-sql.h \
|
|
|
|
gnc-commodity-sql.h \
|
2010-07-14 14:39:19 -05:00
|
|
|
gnc-customer-sql.h \
|
|
|
|
gnc-employee-sql.h \
|
|
|
|
gnc-entry-sql.h \
|
|
|
|
gnc-invoice-sql.h \
|
|
|
|
gnc-job-sql.h \
|
2008-08-01 11:02:07 -05:00
|
|
|
gnc-lots-sql.h \
|
2010-07-14 14:39:19 -05:00
|
|
|
gnc-order-sql.h \
|
2008-08-01 11:02:07 -05:00
|
|
|
gnc-price-sql.h \
|
|
|
|
gnc-recurrence-sql.h \
|
|
|
|
gnc-schedxaction-sql.h \
|
|
|
|
gnc-slots-sql.h \
|
2010-07-14 14:39:19 -05:00
|
|
|
gnc-tax-table-sql.h \
|
2009-06-19 11:48:48 -05:00
|
|
|
gnc-transaction-sql.h \
|
2010-07-14 14:39:19 -05:00
|
|
|
gnc-vendor-sql.h \
|
2016-11-01 13:58:21 -05:00
|
|
|
gnc-sql-backend.hpp \
|
|
|
|
gnc-sql-connection.hpp \
|
|
|
|
gnc-sql-result.hpp \
|
|
|
|
gnc-sql-column-table-entry.hpp \
|
|
|
|
gnc-sql-object-backend.hpp \
|
2009-06-19 11:48:48 -05:00
|
|
|
escape.h
|
2008-08-01 11:02:07 -05:00
|
|
|
|
|
|
|
libgnc_backend_sql_la_LIBADD = \
|
2009-04-06 19:48:53 -05:00
|
|
|
${GLIB_LIBS} \
|
2009-11-16 15:42:23 -06:00
|
|
|
${GUILE_LIBS} \
|
2017-08-10 06:56:00 -05:00
|
|
|
${top_builddir}/libgnucash/engine/libgncmod-engine.la
|
2008-08-01 11:02:07 -05:00
|
|
|
|
2012-11-06 21:08:15 -06:00
|
|
|
AM_CPPFLAGS += -DG_LOG_DOMAIN=\"gnc.backend.sql\"
|
2017-07-10 13:06:31 -05:00
|
|
|
|
2017-07-10 13:16:35 -05:00
|
|
|
EXTRA_DIST += CMakeLists.txt
|