SUBDIRS = . tests SWIG_FILES = gnucash_core.i timespec.i pkgpyexec_DATA = \ __init__.py \ function_class.py \ gnucash_core.py \ gnucash_core_c.py \ gnucash_business.py pkgpyexec_LTLIBRARIES = _gnucash_core_c.la _gnucash_core_c_la_SOURCES = \ gnucash_core.c _gnucash_core_c_la_CPPFLAGS = \ $(PYTHON_CPPFLAGS) \ $(GLIB_CFLAGS) \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/engine \ -I${top_srcdir}/src/gnome-utils \ -I${top_srcdir}/src/app-utils \ -I${top_srcdir}/src/gnc-module \ -I${top_srcdir}/src/gnome \ -I${top_srcdir}/src/core-utils \ -I${top_srcdir}/src/gnc-module # Suppress all warnings for now, but we really only need to -Wno-implicit AM_CFLAGS = -w _gnucash_core_c_la_LDFLAGS = -avoid-version -module _gnucash_core_c_la_LIBADD = \ ${GLIB_LIBS} \ ${top_builddir}/src/gnc-module/libgnc-module.la \ ${top_builddir}/src/engine/libgncmod-engine.la \ ${top_builddir}/src/app-utils/libgncmod-app-utils.la if BUILDING_FROM_VCS _gnucash_core_c_includes= \ ${top_builddir}/config.h \ ${top_srcdir}/src/engine/qofsession.h \ ${top_srcdir}/src/engine/qofbook.h \ ${top_srcdir}/src/engine/qofbackend.h \ ${top_srcdir}/src/engine/qoflog.h \ ${top_srcdir}/src/engine/qofutil.h \ ${top_srcdir}/src/engine/qofid.h \ ${top_srcdir}/src/engine/guid.h \ ${top_srcdir}/src/gnc-module/gnc-module.h \ ${top_srcdir}/src/engine/gnc-engine.h \ ${top_srcdir}/src/engine/Transaction.h \ ${top_srcdir}/src/engine/Split.h \ ${top_srcdir}/src/engine/Account.h \ ${top_srcdir}/src/engine/gnc-commodity.h \ ${top_srcdir}/src/engine/gnc-lot.h \ ${top_srcdir}/src/engine/gnc-numeric.h \ ${top_srcdir}/src/engine/gncCustomer.h \ ${top_srcdir}/src/engine/gncEmployee.h \ ${top_srcdir}/src/engine/gncVendor.h \ ${top_srcdir}/src/engine/gncAddress.h \ ${top_srcdir}/src/engine/gncBillTerm.h \ ${top_srcdir}/src/engine/gncOwner.h \ ${top_srcdir}/src/engine/gncInvoice.h \ ${top_srcdir}/src/engine/gncJob.h \ ${top_srcdir}/src/engine/gncEntry.h \ ${top_srcdir}/src/engine/gncTaxTable.h \ ${top_srcdir}/src/engine/gncIDSearch.h \ ${top_srcdir}/src/engine/gnc-pricedb.h \ ${top_srcdir}/src/app-utils/gnc-prefs-utils.h gnucash_core.c: $(SWIG_FILES) ${top_srcdir}/src/base-typemaps.i ${top_srcdir}/src/engine/engine-common.i $(_gnucash_core_c_includes) $(SWIG) -python -Wall -Werror \ -I$(top_srcdir)/src -I$(top_srcdir)/src/engine \ -I$(top_srcdir)/src/app-utils -o $@ $< gnucash_core_c.py: gnucash_core.c $(SWIG_FILES) endif EXTRA_DIST = \ $(pkgpyexec_DATA) \ $(SWIG_FILES) \ example_scripts/Invoice.tex \ example_scripts/latex_invoices.py \ example_scripts/simple_book.py \ example_scripts/simple_session.py \ example_scripts/simple_test.py \ example_scripts/simple_business_create.py \ example_scripts/simple_invoice_insert.py \ example_scripts/simple_sqlite_create.py \ example_scripts/change_tax_code.py \ example_scripts/account_analysis.py \ example_scripts/new_book_with_opening_balances.py \ example_scripts/test_imbalance_transaction.py \ example_scripts/rest-api/gnucash_rest.py \ example_scripts/rest-api/gnucash_simple.py \ example_scripts/rest-api/README \ example_scripts/CMakeLists.txt \ CMakeLists.txt MAINTAINERCLEANFILES = gnucash_core.c check_PROGRAMS = sqlite3test sqlite3test_SOURCES = sqlite3test.c sqlite3test_LDADD = ${_gnucash_core_c_la_LIBADD} sqlite3test_CPPFLAGS = ${_gnucash_core_c_la_CPPFLAGS} PYTHON_LINK_FILES = \ $(pkgpyexec_DATA) .py-links:$(PYTHON_LINK_FILES) $(RM) -rf gnucash mkdir -p gnucash if GNUCASH_SEPARATE_BUILDDIR for X in $(filter-out gnucash_core_c.py,${PYTHON_LINK_FILES}) ; do \ $(LN_S) -f ${srcdir}/$$X . ; \ done endif ( cd gnucash; for file in $(PYTHON_LINK_FILES) ; do \ $(LN_S) -f ../$$file .; \ done ) if ! OS_WIN32 touch .py-links endif noinst_DATA = .py-links CLEANFILES = $(BUILT_SOURCES) .py-links gnucash_core.c.py clean-local: rm -rf gnucash uninstall-local: rm -rf ${pkgpyexecdir}