mirror of https://github.com/Gnucash/gnucash
parent
ebbcd30f39
commit
54ac7f23e0
@ -1,244 +0,0 @@
|
||||
if GNUCASH_ENABLE_GUI
|
||||
GNUCASH_SUBDIR = gnucash
|
||||
else
|
||||
GNUCASH_SUBDIR =
|
||||
endif
|
||||
SUBDIRS = . borrowed common libgnucash bindings ${GNUCASH_SUBDIR} doc po data
|
||||
|
||||
GNC_CTAGS_FILE = @GNC_CTAGS_FILE@
|
||||
GNC_ETAGS_FILE = @GNC_ETAGS_FILE@
|
||||
|
||||
noinst_DATA = make-gnucash-potfiles
|
||||
|
||||
noinst_PROGRAMS = gnc-guile
|
||||
gnc_guile_SOURCES = util/guile.c
|
||||
gnc_guile_CFLAGS = ${GUILE_CFLAGS}
|
||||
gnc_guile_LDADD = ${GUILE_LIBS}
|
||||
|
||||
dist_doc_DATA = \
|
||||
AUTHORS \
|
||||
COPYING \
|
||||
ChangeLog \
|
||||
ChangeLog.2017 \
|
||||
ChangeLog.2016 \
|
||||
ChangeLog.2015 \
|
||||
ChangeLog.2014 \
|
||||
ChangeLog.2013 \
|
||||
ChangeLog.2012 \
|
||||
ChangeLog.2011 \
|
||||
ChangeLog.2010 \
|
||||
ChangeLog.2009 \
|
||||
ChangeLog.2008 \
|
||||
ChangeLog.2007 \
|
||||
ChangeLog.2006 \
|
||||
ChangeLog.2005 \
|
||||
ChangeLog.2004 \
|
||||
ChangeLog.2003 \
|
||||
ChangeLog.2002 \
|
||||
ChangeLog.2001 \
|
||||
ChangeLog.2000 \
|
||||
ChangeLog.1999 \
|
||||
DOCUMENTERS \
|
||||
HACKING \
|
||||
INSTALL \
|
||||
LICENSE \
|
||||
NEWS \
|
||||
README \
|
||||
README.dependencies
|
||||
|
||||
# All the other files that go in the distribution tarfile that aren't
|
||||
# included some other way...
|
||||
|
||||
# Most directories handle their own EXTRA_DIST setting, but for some,
|
||||
# it's not worth the trouble and for others, there's no Makefile.am
|
||||
# (i.e. ./intl and ./po -- these handle their own Makefile.in and
|
||||
# Makefile.in.in files...), so we list their files here.
|
||||
|
||||
# Don't list any directories or you'll get *everything*, including the
|
||||
# CVS dirs.
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
cmake/cmake_uninstall.cmake.in \
|
||||
cmake/README_CMAKE.txt \
|
||||
cmake/CMakeLists.txt \
|
||||
make-gnucash-potfiles.in \
|
||||
macros/binreloc.m4 \
|
||||
macros/compiler-flags.m4 \
|
||||
macros/ax_pkg_swig.m4 \
|
||||
macros/ax_python_devel.m4 \
|
||||
macros/ax_swig_python.m4 \
|
||||
macros/legacy_macros.m4 \
|
||||
macros/CMakeLists.txt \
|
||||
po/CMakeLists.txt \
|
||||
po/check-po.cmake \
|
||||
po/glossary/CMakeLists.txt \
|
||||
po/gnucash.pot \
|
||||
po/POTFILES.in \
|
||||
po/POTFILES.skip \
|
||||
po/POTFILES.ignore \
|
||||
po/README \
|
||||
po/glossary/bg.po \
|
||||
po/glossary/ca.po \
|
||||
po/glossary/da.po \
|
||||
po/glossary/de.po \
|
||||
po/glossary/el.po \
|
||||
po/glossary/es.po \
|
||||
po/glossary/es_NI-policy.txt \
|
||||
po/glossary/fr.po \
|
||||
po/glossary/gnc-glossary.txt \
|
||||
po/glossary/he.po \
|
||||
po/glossary/hu.po \
|
||||
po/glossary/it.po \
|
||||
po/glossary/nb.po \
|
||||
po/glossary/nl.po \
|
||||
po/glossary/pl.po \
|
||||
po/glossary/pt.po \
|
||||
po/glossary/pt_BR.po \
|
||||
po/glossary/ru.po \
|
||||
po/glossary/rw.po \
|
||||
po/glossary/sk.po \
|
||||
po/glossary/sv.po \
|
||||
po/glossary/txt-to-pot.sh \
|
||||
po/glossary/vi.po \
|
||||
po/glossary/zh_CN.po \
|
||||
po/glossary/zh_TW.po \
|
||||
intltool-extract.in \
|
||||
intltool-merge.in \
|
||||
intltool-update.in \
|
||||
test-templates/CMakeLists.txt \
|
||||
test-templates/Makefile.am \
|
||||
util/gnc-vcs-info \
|
||||
util/CMakeLists.txt
|
||||
|
||||
make-gnucash-potfiles: make-gnucash-potfiles.in Makefile
|
||||
rm -f $@.tmp
|
||||
sed < $< > $@.tmp \
|
||||
-e 's:[@]SRCDIR[@]:${srcdir}:g' \
|
||||
-e 's:[@]PERL[@]:${PERL}:g'
|
||||
chmod +x $@.tmp
|
||||
mv $@.tmp $@
|
||||
|
||||
DISTCLEANFILES = \
|
||||
intltool-extract intltool-update intltool-merge\
|
||||
cscope.files cscope.out etags.files \
|
||||
make-gnucash-potfiles po/.intltool-merge-cache
|
||||
|
||||
cscope.files:
|
||||
find bindings common libgnucash gnucash lib -name '*.[ch]' > cscope.files
|
||||
if GNUCASH_SEPARATE_BUILDDIR
|
||||
find ${srcdir}/bindings ${srcdir}/common ${srcdir}/libgnucash ${srcdir}/gnucash ${srcdir}/lib -name '*.[ch]' >> cscope.files
|
||||
endif
|
||||
|
||||
${srcdir}/cscope.out: cscope.files
|
||||
cscope -b -f ${srcdir}/cscope.out
|
||||
|
||||
|
||||
# make sure etags.files is up to date.
|
||||
# and use the contents of etags.files to re-make TAGS if needed.
|
||||
etags:
|
||||
if GNC_ETAGS_FILE
|
||||
${MAKE} -f Makefile.TAGS etags.files
|
||||
${MAKE} -f Makefile.TAGS TAGS
|
||||
else
|
||||
@echo "You must ./configure with --enable-etags to use etags."
|
||||
endif
|
||||
|
||||
|
||||
# make sure etags.files is up to date.
|
||||
# and use the contents of etags.files to re-make tags if needed.
|
||||
ctags:
|
||||
if GNC_CTAGS_FILE
|
||||
${MAKE} -f Makefile.TAGS etags.files
|
||||
${MAKE} -f Makefile.TAGS tags
|
||||
else
|
||||
@echo "You must ./configure with --enable-ctags to use ctags."
|
||||
endif
|
||||
|
||||
.PHONY: etags ctags
|
||||
|
||||
ACLOCAL_AMFLAGS = -I macros
|
||||
|
||||
.PHONY: doc
|
||||
doc:
|
||||
$(MAKE) -C src/doc doc
|
||||
|
||||
distcleancheck_listfiles = \
|
||||
find -type f -exec sh -c 'test -f ${srcdir}/{} || echo {}' ';'
|
||||
distuninstallcheck_listfiles = \
|
||||
find . -type f -print | grep -v ./share/icons/hicolor/icon-theme.cache | grep -v ./share/info/dir
|
||||
|
||||
#dist-hook: po/POTFILES.in
|
||||
|
||||
distcheck-hook:
|
||||
@e=''; \
|
||||
for X in `grep -v \# ${distdir}/po/POTFILES.in | sed 's/\[type:.*\]//'` ; do \
|
||||
if [ ! -f ${distdir}/$$X ] ; then \
|
||||
echo $$X " is in POTFILES.in but not in the dist."; \
|
||||
e='yes'; \
|
||||
fi; \
|
||||
done; \
|
||||
for X in `grep -v '\(^\#\|.scm\$\)' ${distdir}/po/POTFILES.skip` ; do \
|
||||
if [ -f ${distdir}/$$X ] ; then \
|
||||
echo $$X " is in POTFILES.skip but also in the dist.";\
|
||||
e='yes'; \
|
||||
fi; \
|
||||
done; \
|
||||
if test "$$e" = "yes" ; then exit 1; fi;
|
||||
|
||||
distclean-local:
|
||||
|
||||
libtool: $(LIBTOOL_DEPS)
|
||||
$(SHELL) ./config.status --recheck
|
||||
|
||||
.PHONY: pot
|
||||
pot: Makefile po/POTFILES.in
|
||||
rm -f po/$(PACKAGE).pot
|
||||
${MAKE} -C po $(PACKAGE).pot
|
||||
|
||||
|
||||
$(srcdir)/po/POTFILES.in: make-gnucash-potfiles .potfiles
|
||||
if test -w $(srcdir)/po/POTFILES.in ; then ./make-gnucash-potfiles > $(srcdir)/po/POTFILES.in ; fi
|
||||
|
||||
# Creation rules so that po/gnucash.pot can always be created for
|
||||
# make dist.
|
||||
po/gnucash.pot: po/POTFILES.in
|
||||
${MAKE} -C po gnucash.pot
|
||||
|
||||
.potfiles:
|
||||
|
||||
SVN = svn
|
||||
|
||||
if BUILDING_FROM_VCS
|
||||
# This rule will generate a ChangeLog of gnucash/trunk commits, plus
|
||||
# all additional branches that are added in
|
||||
# ./macros/svn2cl.xsl. (FIXME: Is the dependency on NEWS really a good
|
||||
# idea? Before a release, NEWS will get updated because of the version
|
||||
# change, so this should fit just fine.)
|
||||
ChangeLog: NEWS
|
||||
cd $(abs_srcdir) ; \
|
||||
if test x$(VCS_TYPE) = xsvn ; then \
|
||||
$(SVN) log -v --xml -r HEAD:'{2015-01-01}' http://svn.gnucash.org/repo/gnucash | \
|
||||
$(XSLTPROC) --stringparam strip-prefix "gnucash/trunk" \
|
||||
--stringparam include-rev "yes" $(abs_srcdir)/macros/svn2cl.xsl - > $(abs_builddir)/$@ ; \
|
||||
else \
|
||||
if test x$(VCS_TYPE) = xgit ; then \
|
||||
"$(GIT_CMD)" log --format="%ad %aN %n%n%x09* %s%d%n" --date=short --since=2018-01-01 > $(abs_builddir)/$@ ; \
|
||||
else \
|
||||
touch $(abs_builddir)/$@ ; \
|
||||
echo "Note: not in svn or git. ChangeLog not regenerated." ; \
|
||||
fi ; \
|
||||
fi ; \
|
||||
cd $(abs_builddir)
|
||||
endif
|
||||
|
||||
ASTYLE = /usr/bin/astyle
|
||||
.PHONY: indent
|
||||
indent:
|
||||
$(ASTYLE) --indent=spaces=4 --brackets=break --suffix=none `find ${srcdir}/{bindings,common,libgnucash,gnucash} -name '*.[hc]'`
|
||||
# Use the following line if you've got astyle-1.24, but don't use
|
||||
# --pad=oper with astyle 1.22 as it will reformat e.g. "return +1;" in
|
||||
# a very ugly way.
|
||||
# $(ASTYLE) --indent=spaces=4 --brackets=break --pad-oper -pad-header --suffix=none `find ${srcdir}/{bindings,common,libgnucash,gnucash} -name '*.[hc]'`
|
||||
@echo "### GnuCash development hint: The above command might have re-indented much more files than what you intended. Please commit only those which you really want to have changed, and revert the changes in the others so that other devevelopers do not have unnecessary merge conflicts. Thanks! ###"
|
||||
|
||||
@ -1,246 +0,0 @@
|
||||
#!/bin/sh
|
||||
# Run this to generate all the initial makefiles, etc.
|
||||
|
||||
if test -z "$srcdir" ; then srcdir=`dirname $0` ; fi
|
||||
if test -z "$srcdir" ; then srcdir=. ; fi
|
||||
cd $srcdir
|
||||
|
||||
DIE=0
|
||||
|
||||
if [ -n "${GNOME2_PATH}" ]; then
|
||||
for dir in `echo ${GNOME2_PATH} | sed 's/:/ /g'`; do
|
||||
if test -d "${dir}/share/aclocal"; then
|
||||
ACLOCAL_FLAGS="${ACLOCAL_FLAGS} -I ${dir}/share/aclocal"
|
||||
fi;
|
||||
if test -d "${dir}/bin"; then
|
||||
PATH="${PATH}:${dir}/bin"
|
||||
fi;
|
||||
done;
|
||||
export PATH
|
||||
fi
|
||||
|
||||
# usage: test_version program version
|
||||
# returns 0 if program >= version; returns 1 if not.
|
||||
test_version()
|
||||
{
|
||||
this_prog="$1"
|
||||
want_vers="$2"
|
||||
|
||||
testv=`"$this_prog" --version 2>/dev/null | head -n 1 | awk '{print $NF}'`
|
||||
if test -z "$testv" ; then return 1 ; fi
|
||||
|
||||
testv_major=`echo "$testv" | sed 's/\([0-9]*\).\([0-9]*\).*$/\1/'`
|
||||
testv_minor=`echo "$testv" | sed 's/\([0-9]*\).\([0-9]*\).*$/\2/'`
|
||||
|
||||
vers_major=`echo "$want_vers" | sed 's/\([0-9]*\).\([0-9]*\).*$/\1/'`
|
||||
vers_minor=`echo "$want_vers" | sed 's/\([0-9]*\).\([0-9]*\).*$/\2/'`
|
||||
|
||||
# if wanted_major > found_major, this isn't good enough
|
||||
if test $vers_major -gt $testv_major ; then
|
||||
return 1
|
||||
# if wanted_major < found_major, then this is fine
|
||||
elif test $vers_major -lt $testv_major ; then
|
||||
return 0
|
||||
# if we get here, then the majors are equal, so test the minor version
|
||||
# we want found_minor >= want_minor.
|
||||
# So, if want_minor > found_minor, this is bad.
|
||||
elif test $vers_minor -gt $testv_minor ; then
|
||||
return 1
|
||||
# this is it.
|
||||
else
|
||||
return 0
|
||||
fi
|
||||
}
|
||||
|
||||
# usage: find_program preset program version "<other versions>"
|
||||
# sets "program" to the name of the program to use.
|
||||
# if preset is set, then use that regardless,
|
||||
# otherwise check if "program" is of a good enough version and use that,
|
||||
# otherwise check if "program-version" is of a good enough version and use that.
|
||||
# otherwise return an error.
|
||||
find_program()
|
||||
{
|
||||
find="$1"
|
||||
prog="$2"
|
||||
vers="$3"
|
||||
extravers="$4"
|
||||
|
||||
if test -n "$find" ; then
|
||||
test_version "$find" "$vers"
|
||||
status="$?"
|
||||
if test "$status" = 0 ; then
|
||||
program="$find"
|
||||
return 0
|
||||
fi
|
||||
echo "**Error**: cannot use $find"
|
||||
else
|
||||
|
||||
test_version "$prog" "$vers"
|
||||
status=$?
|
||||
if test "$status" = 0 ; then
|
||||
program="$prog"
|
||||
return 0
|
||||
fi
|
||||
|
||||
for test_vers in $vers $extravers ; do
|
||||
test_version "$prog-$test_vers" "$vers"
|
||||
status=$?
|
||||
if test "$status" = 0 ; then
|
||||
program="$prog-$test_vers"
|
||||
return 0
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
echo
|
||||
echo "**Warning**: Could not find a $prog that identifies itself >= $vers."
|
||||
echo
|
||||
program="$prog"
|
||||
}
|
||||
|
||||
############################################################
|
||||
#
|
||||
# Store all required programs in variables. All of these variables
|
||||
# could have been set by the developer beforehand, if he/she needs to
|
||||
# override the defaults of here.
|
||||
|
||||
: ${GLIB_GETTEXTIZE=glib-gettextize}
|
||||
: ${INTLTOOLIZE=intltoolize}
|
||||
: ${LIBTOOLIZE=libtoolize}
|
||||
|
||||
find_program "$AUTOCONF" autoconf 2.59
|
||||
AUTOCONF="$program"
|
||||
find_program "$AUTOHEADER" autoheader 2.59
|
||||
AUTOHEADER="$program"
|
||||
find_program "$AUTOMAKE" automake 1.11
|
||||
AUTOMAKE="$program"
|
||||
find_program "$ACLOCAL" aclocal 1.9
|
||||
ACLOCAL="$program"
|
||||
|
||||
############################################################
|
||||
#
|
||||
# All variables are set. Now check whether these programs are really
|
||||
# available.
|
||||
|
||||
(${GLIB_GETTEXTIZE} --version) < /dev/null > /dev/null 2>&1 || {
|
||||
echo
|
||||
echo "**Error**: You must have \`glib-gettextize' installed to compile GnuCash."
|
||||
echo "Get the development packages of the glib-2.x library from your distribution."
|
||||
DIE=1
|
||||
}
|
||||
|
||||
(${INTLTOOLIZE} --version) < /dev/null > /dev/null 2>&1 || {
|
||||
echo
|
||||
echo "**Error**: You must have \`intltoolize' installed to compile GnuCash."
|
||||
echo "Get the package 'intltool' of your distribution."
|
||||
DIE=1
|
||||
}
|
||||
|
||||
# On MacOS, libtoolize is installed as glibtoolize, so handle that here.
|
||||
(${LIBTOOLIZE} --version) < /dev/null > /dev/null 2>&1 || {
|
||||
LIBTOOLIZE=glibtoolize
|
||||
(${LIBTOOLIZE} --version) < /dev/null > /dev/null 2>&1 || {
|
||||
echo
|
||||
echo "**Error**: You must have \`libtoolize' installed to compile GnuCash."
|
||||
echo "Could not find either \`libtoolize' or \'glibtoolize'."
|
||||
echo "Download the appropriate package for your distribution,"
|
||||
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
|
||||
DIE=1
|
||||
}
|
||||
}
|
||||
|
||||
(${AUTOMAKE} --version) < /dev/null > /dev/null 2>&1 || {
|
||||
echo
|
||||
echo "**Error**: You must have \`automake' installed to compile GnuCash."
|
||||
echo "Download the appropriate package for your distribution,"
|
||||
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
|
||||
DIE=1
|
||||
NO_AUTOMAKE=yes
|
||||
}
|
||||
|
||||
|
||||
# if no automake, don't bother testing for aclocal
|
||||
test -n "$NO_AUTOMAKE" || (${ACLOCAL} --version) < /dev/null > /dev/null 2>&1 || {
|
||||
echo
|
||||
echo "**Error**: Missing \`aclocal'. The version of \`automake'"
|
||||
echo "installed doesn't appear recent enough (older than automake-1.4)."
|
||||
echo "Download the appropriate package for your distribution,"
|
||||
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
|
||||
DIE=1
|
||||
}
|
||||
|
||||
(${AUTOCONF} --version) < /dev/null > /dev/null 2>&1 || {
|
||||
echo
|
||||
echo "**Error**: You must have \`autoconf' installed to compile GnuCash."
|
||||
echo "Download the appropriate package for your distribution,"
|
||||
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
|
||||
DIE=1
|
||||
}
|
||||
|
||||
if test "$DIE" -eq 1; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
case $CC in
|
||||
xlc )
|
||||
am_opt=--include-deps;;
|
||||
esac
|
||||
|
||||
############################################################
|
||||
#
|
||||
# All programs are available. So now actually call them in the
|
||||
# required order.
|
||||
|
||||
echo "Creating po/POTFILES.in ..."
|
||||
test -r po/POTFILES.in || touch po/POTFILES.in
|
||||
|
||||
echo "Creating aclocal.m4 ..."
|
||||
test -r aclocal.m4 || touch aclocal.m4
|
||||
|
||||
echo "Running ${GLIB_GETTEXTIZE} --force --copy ... "
|
||||
echo "GnuCash note: Please ignore the output of ${GLIB_GETTEXTIZE} below!"
|
||||
echo "no" | ${GLIB_GETTEXTIZE} --force --copy
|
||||
echo "GnuCash note: Please ignore the output of ${GLIB_GETTEXTIZE} above!"
|
||||
echo
|
||||
|
||||
echo "Ensure aclocal.m4 is writable ..."
|
||||
test -r aclocal.m4 && chmod u+w aclocal.m4
|
||||
|
||||
echo "Ensure po/POTFILES.in is writable ..."
|
||||
test -r po/POTFILES.in && chmod u+w po/POTFILES.in
|
||||
|
||||
echo "Running ${INTLTOOLIZE} --force --copy ..."
|
||||
${INTLTOOLIZE} --force --copy || \
|
||||
{ echo "**Error**: ${INTLTOOLIZE} failed."; exit 1; }
|
||||
|
||||
echo "Running ${LIBTOOLIZE} --force --copy ..."
|
||||
${LIBTOOLIZE} --force --copy || \
|
||||
{ echo "**Error**: ${LIBTOOLIZE} failed."; exit 1; }
|
||||
|
||||
aclocalinclude="$ACLOCAL_FLAGS -I macros"
|
||||
echo "Running ${ACLOCAL} $aclocalinclude ..."
|
||||
${ACLOCAL} $aclocalinclude || \
|
||||
{ echo "**Error**: ${ACLOCAL} failed."; exit 1; }
|
||||
|
||||
echo "Running ${AUTOHEADER}..."
|
||||
${AUTOHEADER} || { echo "**Error**: ${AUTOHEADER} failed."; exit 1; }
|
||||
|
||||
echo "Running ${AUTOMAKE} --add-missing --gnu --warnings=no-portability $am_opt ..."
|
||||
${AUTOMAKE} --add-missing --gnu --warnings=no-portability $am_opt || \
|
||||
{ echo "**Error**: ${AUTOMAKE} failed."; exit 1; }
|
||||
|
||||
echo "Running ${AUTOCONF} ..."
|
||||
${AUTOCONF} || \
|
||||
{ echo "**Error**: ${AUTOCONF} failed."; exit 1; }
|
||||
|
||||
############################################################
|
||||
# Done.
|
||||
|
||||
conf_flags="--enable-compile-warnings" # --enable-iso-c --enable-error-on-warning
|
||||
|
||||
echo ""
|
||||
echo "NOTE: Just run configure. Even if something told you to run"
|
||||
echo " aclocal, automake, or anything else above, IGNORE IT."
|
||||
echo " Everything has been run properly. Just run configure..."
|
||||
echo ""
|
||||
echo You must now run $srcdir/configure $conf_flags "$@" ...
|
||||
@ -1,4 +1,4 @@
|
||||
ADD_SUBDIRECTORY(python)
|
||||
|
||||
SET_LOCAL_DIST(bindings_DIST_local CMakeLists.txt Makefile.am)
|
||||
SET_LOCAL_DIST(bindings_DIST_local CMakeLists.txt )
|
||||
SET(bindings_DIST ${bindings_DIST_local} ${python_bindings_DIST} PARENT_SCOPE)
|
||||
|
||||
@ -1,6 +0,0 @@
|
||||
if WITH_PYTHON
|
||||
PYTHON_DIR = python
|
||||
endif
|
||||
SUBDIRS = ${PYTHON_DIR}
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt
|
||||
@ -1,145 +0,0 @@
|
||||
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)/common \
|
||||
-I$(top_srcdir)/libgnucash/engine \
|
||||
-I${top_srcdir}/gnucash/gnome-utils \
|
||||
-I${top_srcdir}/libgnucash/app-utils \
|
||||
-I${top_srcdir}/libgnucash/gnc-module \
|
||||
-I${top_srcdir}/gnucash/gnome \
|
||||
-I${top_srcdir}/libgnucash/core-utils \
|
||||
-I${top_srcdir}/libgnucash/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}/libgnucash/gnc-module/libgnc-module.la \
|
||||
${top_builddir}/libgnucash/engine/libgncmod-engine.la \
|
||||
${top_builddir}/libgnucash/app-utils/libgncmod-app-utils.la
|
||||
if BUILDING_FROM_VCS
|
||||
_gnucash_core_c_includes= \
|
||||
${top_builddir}/config.h \
|
||||
${top_srcdir}/libgnucash/engine/qofsession.h \
|
||||
${top_srcdir}/libgnucash/engine/qofbook.h \
|
||||
${top_srcdir}/libgnucash/engine/qofbackend.h \
|
||||
${top_srcdir}/libgnucash/engine/qoflog.h \
|
||||
${top_srcdir}/libgnucash/engine/qofutil.h \
|
||||
${top_srcdir}/libgnucash/engine/qofid.h \
|
||||
${top_srcdir}/libgnucash/engine/guid.h \
|
||||
${top_srcdir}/libgnucash/gnc-module/gnc-module.h \
|
||||
${top_srcdir}/libgnucash/engine/gnc-engine.h \
|
||||
${top_srcdir}/libgnucash/engine/Transaction.h \
|
||||
${top_srcdir}/libgnucash/engine/Split.h \
|
||||
${top_srcdir}/libgnucash/engine/Account.h \
|
||||
${top_srcdir}/libgnucash/engine/gnc-commodity.h \
|
||||
${top_srcdir}/libgnucash/engine/gnc-lot.h \
|
||||
${top_srcdir}/libgnucash/engine/gnc-numeric.h \
|
||||
${top_srcdir}/libgnucash/engine/gncCustomer.h \
|
||||
${top_srcdir}/libgnucash/engine/gncEmployee.h \
|
||||
${top_srcdir}/libgnucash/engine/gncVendor.h \
|
||||
${top_srcdir}/libgnucash/engine/gncAddress.h \
|
||||
${top_srcdir}/libgnucash/engine/gncBillTerm.h \
|
||||
${top_srcdir}/libgnucash/engine/gncOwner.h \
|
||||
${top_srcdir}/libgnucash/engine/gncInvoice.h \
|
||||
${top_srcdir}/libgnucash/engine/gncJob.h \
|
||||
${top_srcdir}/libgnucash/engine/gncEntry.h \
|
||||
${top_srcdir}/libgnucash/engine/gncTaxTable.h \
|
||||
${top_srcdir}/libgnucash/engine/gncIDSearch.h \
|
||||
${top_srcdir}/libgnucash/engine/gnc-pricedb.h \
|
||||
${top_srcdir}/libgnucash/app-utils/gnc-prefs-utils.h
|
||||
|
||||
|
||||
gnucash_core.c: $(SWIG_FILES) ${top_srcdir}/common/base-typemaps.i ${top_srcdir}/libgnucash/engine/engine-common.i $(_gnucash_core_c_includes)
|
||||
$(SWIG) -python -Wall -Werror \
|
||||
-I$(GLIB_CFLAGS) -I$(top_srcdir)/common \
|
||||
-I$(top_srcdir)/libgnucash/engine \
|
||||
-I$(top_srcdir)/libgnucash/app-utils -I${srcdir} -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_GNUCASH_LINK_FILES = \
|
||||
$(pkgpyexec_DATA)
|
||||
|
||||
|
||||
if BUILDING_FROM_VCS
|
||||
PYTHON_LINK_FILES = $(filter-out gnucash_core_c.py,${PYTHON_GNUCASH_LINK_FILES})
|
||||
else
|
||||
PYTHON_LINK_FILES = ${PYTHON_GNUCASH_LINK_FILES}
|
||||
endif
|
||||
|
||||
.py-links:$(PYTHON_GNUCASH_LINK_FILES)
|
||||
$(RM) -rf gnucash
|
||||
mkdir -p gnucash
|
||||
if GNUCASH_SEPARATE_BUILDDIR
|
||||
for X in ${PYTHON_LINK_FILES} ; do \
|
||||
$(LN_S) -f ${srcdir}/$$X . ; \
|
||||
done
|
||||
endif
|
||||
( cd gnucash; for file in $(PYTHON_GNUCASH_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}
|
||||
@ -1,50 +0,0 @@
|
||||
GNC_TEST_DEPS = --gnc-module-dir ${top_builddir}/libgnucash/engine \
|
||||
--gnc-module-dir ${top_builddir}/libgnucash/app-utils \
|
||||
--guile-load-dir ${top_builddir}/libgnucash/core-utils \
|
||||
--guile-load-dir ${top_builddir}/libgnucash/gnc-module \
|
||||
--guile-load-dir ${top_builddir}/libgnucash/engine \
|
||||
--guile-load-dir ${top_builddir}/libgnucash/scm \
|
||||
--guile-load-dir ${top_builddir}/libgnucash/app-utils \
|
||||
--library-dir ${top_builddir}/libgnucash/core-utils \
|
||||
--library-dir ${top_builddir}/libgnucash/gnc-module \
|
||||
--library-dir ${top_builddir}/libgnucash/engine \
|
||||
--library-dir ${top_builddir}/libgnucash/backend/xml \
|
||||
--library-dir ${top_builddir}/libgnucash/backend/sql \
|
||||
--library-dir ${top_builddir}/libgnucash/app-utils \
|
||||
--library-dir ${top_builddir}/common/test-core
|
||||
|
||||
TESTS_ENVIRONMENT = \
|
||||
GNC_BUILDDIR="${abs_top_builddir}" \
|
||||
PYTHON=${PYTHON} \
|
||||
PYTHONPATH=$$PYTHONPATH:$(top_builddir)/bindings/python \
|
||||
PYTHONPATH=$$PYTHONPATH:$(top_builddir)/bindings/python/.libs \
|
||||
PYTHONPATH=$$PYTHONPATH:$(top_srcdir)/bindings/python/tests \
|
||||
PYTHONPATH=$$PYTHONPATH:$(top_builddir)/common/test-core/ \
|
||||
PYTHONPATH=$$PYTHONPATH:$(top_srcdir)/common/test-core/ \
|
||||
PYTHONPATH=$$PYTHONPATH:$(top_builddir)/common/test-core/.libs \
|
||||
$(shell ${abs_top_srcdir}/common/gnc-test-env.pl --noexports ${GNC_TEST_DEPS})
|
||||
|
||||
runTests.py: runTests.py.in ${top_builddir}/config.status Makefile
|
||||
rm -f $@.tmp
|
||||
sed < $< > $@.tmp \
|
||||
-e 's#[@]PYTHON[@]#${PYTHON}#'
|
||||
mv $@.tmp $@
|
||||
chmod u+x $@
|
||||
|
||||
CLEANFILES = runTests.py
|
||||
|
||||
TESTS = runTests.py
|
||||
|
||||
clean-local:
|
||||
rm -f translog.*
|
||||
|
||||
EXTRA_DIST = \
|
||||
runTests.py.in \
|
||||
test_account.py \
|
||||
test_book.py \
|
||||
test_split.py \
|
||||
test_commodity.py \
|
||||
test_numeric.py \
|
||||
test_transaction.py \
|
||||
test_business.py \
|
||||
CMakeLists.txt
|
||||
@ -1,11 +0,0 @@
|
||||
if GNUCASH_ENABLE_GUI
|
||||
SUBDIRS = libc goffice
|
||||
if WITH_AQBANKING
|
||||
SUBDIRS += gwengui-gtk3
|
||||
endif
|
||||
else
|
||||
SUBDIRS = libc
|
||||
endif
|
||||
|
||||
EXTRA_DIST = README CMakeLists.txt
|
||||
|
||||
@ -1,19 +0,0 @@
|
||||
noinst_LTLIBRARIES = libgnc-goffice.la
|
||||
|
||||
REALSRCS = go-optionmenu.c \
|
||||
go-charmap-sel.c \
|
||||
go-glib-extras.c
|
||||
REALHDRS = go-optionmenu.h \
|
||||
go-charmap-sel.h \
|
||||
go-glib-extras.h
|
||||
|
||||
libgnc_goffice_la_SOURCES = ${REALSRCS}
|
||||
noinst_HEADERS = ${REALHDRS}
|
||||
|
||||
libgnc_goffice_la_LIBADD = $(GTK_LIBS) \
|
||||
${LIBXML2_LIBS}
|
||||
|
||||
AM_CPPFLAGS = $(GTK_CFLAGS) \
|
||||
${LIBXML2_CFLAGS}
|
||||
|
||||
EXTRA_DIST = $(REALSRCS) $(REALHDRS) CMakeLists.txt
|
||||
@ -1,45 +0,0 @@
|
||||
AM_CPPFLAGS=$(GWEN_CFLAGS) $(GTK_CFLAGS)
|
||||
|
||||
DEFS+=-DBUILDING_GTK3_GUI -DPACKAGE=\"$(PACKAGE)\"
|
||||
|
||||
lib_LTLIBRARIES=libgwengui-gtk3.la
|
||||
|
||||
libgwengui_gtk3_la_LIBADD=$(GTK_LIBS) $(GWEN_LIBS)
|
||||
libgwengui_gtk3_la_LDFLAGS = -no-undefined
|
||||
|
||||
noinst_HEADERS=\
|
||||
gtk3_gui.h \
|
||||
gtk3_gui_p.h \
|
||||
gtk3_gui_dialog_l.h \
|
||||
gtk3_gui_dialog_p.h
|
||||
|
||||
libgwengui_gtk3_la_SOURCES=\
|
||||
gtk3_gui_dialog.c \
|
||||
gtk3_gui.c
|
||||
|
||||
|
||||
EXTRA_DIST=\
|
||||
w_combobox.c \
|
||||
w_label.c \
|
||||
w_dialog.c \
|
||||
w_gridlayout.c \
|
||||
w_groupbox.c \
|
||||
w_image.c \
|
||||
w_hlayout.c \
|
||||
w_hline.c \
|
||||
w_hspacer.c \
|
||||
w_lineedit.c \
|
||||
w_vlayout.c \
|
||||
w_vline.c \
|
||||
w_vspacer.c \
|
||||
w_pushbutton.c \
|
||||
w_textbrowser.c \
|
||||
w_textedit.c \
|
||||
w_stack.c \
|
||||
w_tabbook.c \
|
||||
w_progressbar.c \
|
||||
w_listbox.c \
|
||||
w_checkbox.c \
|
||||
w_scrollarea.c \
|
||||
w_radiobutton.c \
|
||||
w_spinbox.c
|
||||
@ -1,4 +1,4 @@
|
||||
SET(libc_SOURCES libc-missing-noop.c setenv.c strfmon.c strptime.c)
|
||||
SET(libc_HEADERS pow.h setenv.h strfmon.h strptime.h)
|
||||
|
||||
SET_DIST_LIST(libc_DIST CMakeLists.txt Makefile.am ${libc_SOURCES} ${libc_HEADERS})
|
||||
SET_DIST_LIST(libc_DIST CMakeLists.txt ${libc_SOURCES} ${libc_HEADERS})
|
||||
@ -1,33 +0,0 @@
|
||||
noinst_LTLIBRARIES = libc-missing.la
|
||||
|
||||
# All header files must be listed.
|
||||
noinst_HEADERS = \
|
||||
setenv.h \
|
||||
strfmon.h \
|
||||
strptime.h \
|
||||
pow.h
|
||||
|
||||
# No sources should be listed.
|
||||
libc_missing_la_SOURCES = libc-missing-noop.c
|
||||
|
||||
EXTRA_libc_missing_la_SOURCES = \
|
||||
setenv.c \
|
||||
strfmon.c \
|
||||
strptime.c \
|
||||
CMakeLists.txt
|
||||
|
||||
# This will automatically be filled in with the necessary object file
|
||||
# names. Configure does this based upon the AC_REPLACE_FUNCS macros.
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LTLIBOBJS = $(shell echo "$(LIBOBJS)" | sed '@LIBOBJS_SEDSCRIPT@' | \
|
||||
sed 's,\.[^.]* ,.lo ,g;s,\.[^.]*$$,.lo,')
|
||||
|
||||
libc_missing_la_LIBADD = $(LTLIBOBJS)
|
||||
|
||||
if OS_WIN32
|
||||
AM_CPPFLAGS = -DOS_WIN32
|
||||
endif
|
||||
|
||||
print_libobjs: Makefile
|
||||
@echo "LIBOBJS = $(LIBOBJS)"
|
||||
@echo "LTLIBOBJS = $(LTLIBOBJS)"
|
||||
@ -1,41 +0,0 @@
|
||||
# These directories do not contain any gtk dependencies
|
||||
# Note the unusual ordering of some test directories. This is
|
||||
# because test-core depends on engine and the test directories
|
||||
# in turn depend on test-core.
|
||||
SUBDIRS = \
|
||||
. \
|
||||
debug
|
||||
# Note normally SUBDIRS should also include test-core. That directory
|
||||
# however depends on libgnucash/engine and hence is included in
|
||||
# libgnucash/Makefile.am for proper build oldering. This would not
|
||||
# be needed if our Makefiles were structured to be included one
|
||||
# in the other instead of for a recursive make invocation.
|
||||
|
||||
noinst_HEADERS = \
|
||||
swig-runtime.h
|
||||
|
||||
if BUILDING_FROM_VCS
|
||||
swig-runtime.h:
|
||||
$(SWIG) -guile -external-runtime $@
|
||||
endif
|
||||
MAINTAINERCLEANFILES = swig-runtime.h
|
||||
|
||||
EXTRA_DIST = \
|
||||
base-typemaps.i \
|
||||
cmake_modules/MacroAppendForeach.cmake \
|
||||
cmake_modules/GncAddSwigCommand.cmake \
|
||||
cmake_modules/GncAddTest.cmake \
|
||||
cmake_modules/MakeDist.cmake \
|
||||
cmake_modules/COPYING-CMAKE-SCRIPTS.txt \
|
||||
cmake_modules/MakeDistFiles.cmake \
|
||||
cmake_modules/MacroAddSourceFileCompileFlags.cmake \
|
||||
cmake_modules/MakeDistCheck.cmake \
|
||||
cmake_modules/GncAddSchemeTargets.cmake \
|
||||
cmake_modules/GncAddGSchemaTargets.cmake \
|
||||
cmake_modules/GncFindPkgConfig.cmake \
|
||||
cmake_modules/CMakeLists.txt \
|
||||
config.h.cmake.in \
|
||||
gnc-test-env.pl \
|
||||
guile-mappings.h \
|
||||
platform.h \
|
||||
CMakeLists.txt
|
||||
@ -1,4 +1,4 @@
|
||||
ADD_SUBDIRECTORY(valgrind)
|
||||
|
||||
SET_LOCAL_DIST(debug_DIST_local CMakeLists.txt Makefile.am)
|
||||
SET_LOCAL_DIST(debug_DIST_local CMakeLists.txt )
|
||||
SET(debug_DIST ${debug_DIST_local} ${valgrind_DIST} PARENT_SCOPE)
|
||||
@ -1,4 +0,0 @@
|
||||
SUBDIRS = \
|
||||
valgrind
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt
|
||||
@ -1,10 +0,0 @@
|
||||
|
||||
EXTRA_DIST = \
|
||||
valgrind-gdk.supp \
|
||||
valgrind-glib.supp \
|
||||
valgrind-gnucash.supp \
|
||||
valgrind-libfontconfig.supp \
|
||||
valgrind-libgda.supp \
|
||||
valgrind-libguile.supp \
|
||||
valgrind-x11.supp \
|
||||
CMakeLists.txt
|
||||
@ -1,137 +0,0 @@
|
||||
noinst_LTLIBRARIES = libtest-core.la
|
||||
|
||||
SWIG_FILES = \
|
||||
unittest-support.i
|
||||
|
||||
libtest_core_la_SOURCES = \
|
||||
test-stuff.c \
|
||||
unittest-support.c
|
||||
|
||||
libtest_core_la_LIBADD = \
|
||||
${top_builddir}/libgnucash/engine/libgncmod-engine.la \
|
||||
${GLIB_LIBS}
|
||||
|
||||
noinst_HEADERS = \
|
||||
test-stuff.h \
|
||||
unittest-support.h
|
||||
|
||||
libtest_core_la_CPPFLAGS = \
|
||||
-I${top_srcdir}/common \
|
||||
-I${top_srcdir}/libgnucash/engine \
|
||||
${GLIB_CFLAGS}
|
||||
|
||||
libtest_core_la_LDFLAGS = \
|
||||
-rpath ${exec_prefix}/lib
|
||||
|
||||
if BUILDING_FROM_VCS
|
||||
swig-unittest-support-guile.c: unittest-support.i $(top_srcdir)/common/base-typemaps.i
|
||||
$(SWIG) -guile -Linkage module \
|
||||
-I${top_srcdir}/common \
|
||||
${AM_CPPFLAGS} -o $@ $<
|
||||
|
||||
swig-unittest-support-python.c: unittest-support.i $(top_srcdir)/common/base-typemaps.i
|
||||
$(SWIG) -python -Wall -Werror \
|
||||
-I${GLIB_CFLAGS} -I${top_srcdir}/common \
|
||||
${AM_CPPFLAGS} -o $@ $<
|
||||
|
||||
unittest-support.py: swig-unittest-support-python.c ${SWIG_FILES}
|
||||
endif
|
||||
noinst_LTLIBRARIES += libtest-core-guile.la
|
||||
libtest_core_guile_la_SOURCES = swig-unittest-support-guile.c
|
||||
libtest_core_guile_la_LIBADD = \
|
||||
${GUILE_LIBS} \
|
||||
${GLIB_LIBS} \
|
||||
libtest-core.la
|
||||
|
||||
libtest_core_guile_la_CFLAGS = \
|
||||
${libtest_core_la_CPPFLAGS} \
|
||||
${GUILE_CFLAGS} \
|
||||
${AM_CFLAGS}
|
||||
|
||||
libtest_core_guile_la_LDFLAGS = \
|
||||
-rpath ${exec-prefix}/lib
|
||||
|
||||
if WITH_PYTHON
|
||||
|
||||
noinst_LTLIBRARIES += _unittest_support.la
|
||||
|
||||
_unittest_support_la_SOURCES = \
|
||||
swig-unittest-support-python.c
|
||||
_unittest_support_la_CFLAGS = \
|
||||
${libtest_core_la_CPPFLAGS} \
|
||||
${PYTHON_CPPFLAGS}
|
||||
_unittest_support_la_LDFLAGS = \
|
||||
${PYTHON_LDFLAGS} \
|
||||
-module \
|
||||
-rpath ${exec-prefix}/lib
|
||||
|
||||
_unittest_support_la_LIBADD = \
|
||||
${PYTHON_LIBS} \
|
||||
${PYTHON_EXTRA_LIBS} \
|
||||
libtest-core.la
|
||||
|
||||
endif
|
||||
|
||||
if GOOGLE_TEST_LIBS
|
||||
noinst_LIBRARIES = libgmock.a
|
||||
else
|
||||
noinst_LIBRARIES = \
|
||||
libgtest.a \
|
||||
libgmock.a
|
||||
nodist_libgtest_a_SOURCES = ${GTEST_SRC}/src/gtest-all.cc
|
||||
libgtest_a_CPPFLAGS = ${AM_CPPFLAGS} -I${GTEST_HEADERS} -I${GTEST_SRC}
|
||||
endif
|
||||
nodist_libgmock_a_SOURCES = ${GMOCK_SRC_PATH}/gmock-all.cc
|
||||
libgmock_a_CPPFLAGS = ${libgtest_a_CPPFLAGS} -I${GMOCK_HEADERS} -I${GMOCK_SRC}
|
||||
|
||||
gncscmmoddir = ${GNC_SCM_INSTALL_DIR}/gnucash
|
||||
gncscmmod_DATA = unittest-support.scm
|
||||
|
||||
SCM_FILES = $(gncscmmod_DATA)
|
||||
|
||||
.scm-links:
|
||||
$(RM) -rf gnucash
|
||||
mkdir -p gnucash
|
||||
if GNUCASH_SEPARATE_BUILDDIR
|
||||
for X in ${SCM_FILES} ; do \
|
||||
$(LN_S) -f ${srcdir}/$$X . ; \
|
||||
done
|
||||
endif
|
||||
( cd gnucash; for A in $(gncscmmod_DATA) ; do $(LN_S) -f ../$$A . ; done )
|
||||
if ! OS_WIN32
|
||||
# Windows knows no "ln -s" but uses "cp": must copy every time (see bug #566567).
|
||||
touch .scm-links
|
||||
endif
|
||||
|
||||
GUILE_COMPILE_ENV = \
|
||||
--library-dir ${top_builddir}/common/test-core \
|
||||
--library-dir ${top_builddir}/libgnucash/engine \
|
||||
--library-dir ${top_builddir}/libgnucash/gnc-module \
|
||||
--library-dir ${top_builddir}/libgnucash/core-utils
|
||||
|
||||
%.go : %.scm .scm-links $(noinst_LTLIBRARIES)
|
||||
GNC_UNINSTALLED=yes \
|
||||
GNC_BUILDDIR=${top_builddir} \
|
||||
$(shell ${abs_top_srcdir}/common/gnc-test-env.pl --noexports ${GUILE_COMPILE_ENV}) \
|
||||
$(GUILD) compile -o $@ $<
|
||||
|
||||
gncscmmodcachedir = ${pkglibdir}/scm/ccache/@GUILE_EFFECTIVE_VERSION@/gnucash
|
||||
gncscmmodcache_DATA = $(gncscmmod_DATA:.scm=.go)
|
||||
|
||||
clean-local:
|
||||
$(RM) -rf gnucash
|
||||
|
||||
noinst_DATA = .scm-links
|
||||
CLEANFILES = .scm-links ${gncscmmodcache_DATA}
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(SCM_FILES) \
|
||||
swig-unittest-support-python.c \
|
||||
swig-unittest-support-guile.c \
|
||||
unittest_support.py \
|
||||
unittest-support.i \
|
||||
CMakeLists.txt
|
||||
|
||||
MAINTAINERCLEANFILES = \
|
||||
swig-unittest-support-guile.c \
|
||||
swig-unittest-support-python.c
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,4 +0,0 @@
|
||||
SUBDIRS = \
|
||||
accounts \
|
||||
checks \
|
||||
pixmaps
|
||||
@ -1,25 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/C
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_business.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_cdmoneymkt.gnucash-xea \
|
||||
acctchrt_checkbook.gnucash-xea \
|
||||
acctchrt_childcare.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_eduloan.gnucash-xea \
|
||||
acctchrt_fixedassets.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_renter.gnucash-xea \
|
||||
acctchrt_retiremt.gnucash-xea \
|
||||
acctchrt_spouseinc.gnucash-xea \
|
||||
acctchrt_spouseretire.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
acctchrt_full.gnucash-xea \
|
||||
CMakeLists.txt
|
||||
@ -1,39 +0,0 @@
|
||||
|
||||
SUBDIRS = \
|
||||
C \
|
||||
ca \
|
||||
cs \
|
||||
da \
|
||||
de_AT \
|
||||
de_CH \
|
||||
de_DE \
|
||||
el_GR \
|
||||
en_GB \
|
||||
es_ES \
|
||||
es_MX \
|
||||
fi_FI \
|
||||
fr_CA \
|
||||
fr_CH \
|
||||
fr_FR \
|
||||
hu_HU \
|
||||
it \
|
||||
ja \
|
||||
ko \
|
||||
lt \
|
||||
lv \
|
||||
nb \
|
||||
nl \
|
||||
pl \
|
||||
pt_BR \
|
||||
pt_PT \
|
||||
ru \
|
||||
sk \
|
||||
sv_AX \
|
||||
sv_FI \
|
||||
sv_SE \
|
||||
tr_TR \
|
||||
zh_CN \
|
||||
zh_HK \
|
||||
zh_TW
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt
|
||||
@ -1,24 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/ca
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_cdmoneymkt.gnucash-xea \
|
||||
acctchrt_childcare.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_currency.gnucash-xea \
|
||||
acctchrt_eduloan.gnucash-xea \
|
||||
acctchrt_fixedassets.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_renter.gnucash-xea \
|
||||
acctchrt_retiremt.gnucash-xea \
|
||||
acctchrt_spouseinc.gnucash-xea \
|
||||
acctchrt_spouseretire.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
|
||||
@ -1,23 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/cs
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_cdmoneymkt.gnucash-xea \
|
||||
acctchrt_childcare.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_currency.gnucash-xea \
|
||||
acctchrt_eduloan.gnucash-xea \
|
||||
acctchrt_fixedassets.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_renter.gnucash-xea \
|
||||
acctchrt_retiremt.gnucash-xea \
|
||||
acctchrt_spouseinc.gnucash-xea \
|
||||
acctchrt_spouseretire.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,12 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/da
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_car.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,14 +0,0 @@
|
||||
|
||||
accountdir = $(GNC_ACCOUNTS_DIR)/de_AT
|
||||
|
||||
dist_account_DATA = \
|
||||
acctchrt_auto.gnucash-xea \
|
||||
acctchrt_autoloan.gnucash-xea \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_business.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_houseown.gnucash-xea \
|
||||
acctchrt_investment.gnucash-xea \
|
||||
acctchrt_kids.gnucash-xea
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt
|
||||
@ -1,14 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/de_CH
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_kids.gnucash-xea \
|
||||
acctchrt_otherasset.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_chkmu.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,24 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/de_DE
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_auto.gnucash-xea \
|
||||
acctchrt_autoloan.gnucash-xea \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_houseown.gnucash-xea \
|
||||
acctchrt_investment.gnucash-xea \
|
||||
acctchrt_kids.gnucash-xea \
|
||||
acctchrt_otherasset.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_studium.gnucash-xea \
|
||||
acctchrt_skr03.gnucash-xea \
|
||||
acctchrt_wohnungsw.gnucash-xea \
|
||||
acctchrt_skr04.gnucash-xea \
|
||||
acctchrt_skr49.gnucash-xea
|
||||
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
acctchrt_full.gnucash-xea \
|
||||
CMakeLists.txt
|
||||
@ -1,11 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/el_GR
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_brokerage.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,26 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/en_GB
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_business.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_cdmoneymkt.gnucash-xea \
|
||||
acctchrt_checkbook.gnucash-xea \
|
||||
acctchrt_childcare.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_eduloan.gnucash-xea \
|
||||
acctchrt_fixedassets.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_renter.gnucash-xea \
|
||||
acctchrt_retiremt.gnucash-xea \
|
||||
acctchrt_spouseinc.gnucash-xea \
|
||||
acctchrt_spouseretire.gnucash-xea \
|
||||
uk-vat.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
acctchrt_full.gnucash-xea \
|
||||
CMakeLists.txt
|
||||
@ -1,24 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/es_ES
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_cdmoneymkt.gnucash-xea \
|
||||
acctchrt_childcare.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_currency.gnucash-xea \
|
||||
acctchrt_eduloan.gnucash-xea \
|
||||
acctchrt_fixedassets.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_renter.gnucash-xea \
|
||||
acctchrt_retiremt.gnucash-xea \
|
||||
acctchrt_spouseinc.gnucash-xea \
|
||||
acctchrt_spouseretire.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
|
||||
@ -1,24 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/es_MX
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_cdmoneymkt.gnucash-xea \
|
||||
acctchrt_childcare.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_currency.gnucash-xea \
|
||||
acctchrt_eduloan.gnucash-xea \
|
||||
acctchrt_fixedassets.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_renter.gnucash-xea \
|
||||
acctchrt_retiremt.gnucash-xea \
|
||||
acctchrt_spouseinc.gnucash-xea \
|
||||
acctchrt_spouseretire.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
|
||||
@ -1,11 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/fi_FI
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_sbr-xbrl.gnucash-xea \
|
||||
acctchrt_ry.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,21 +0,0 @@
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/fr_CA
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_actifsfixes.gnucash-xea \
|
||||
acctchrt_automobile.gnucash-xea \
|
||||
acctchrt_basecommune.gnucash-xea \
|
||||
acctchrt_cdmarchemon.gnucash-xea \
|
||||
acctchrt_chequier.gnucash-xea \
|
||||
acctchrt_conjointretraite.gnucash-xea \
|
||||
acctchrt_conjointrev.gnucash-xea \
|
||||
acctchrt_courtage.gnucash-xea \
|
||||
acctchrt_etudeemprunt.gnucash-xea \
|
||||
acctchrt_garderie.gnucash-xea \
|
||||
acctchrt_locataire.gnucash-xea \
|
||||
acctchrt_proprietaire.gnucash-xea \
|
||||
acctchrt_retraite.gnucash-xea \
|
||||
acctchrt_revenus.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,24 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/fr_CH
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_business.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_cdmoneymkt.gnucash-xea \
|
||||
acctchrt_childcare.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_currency.gnucash-xea \
|
||||
acctchrt_eduloan.gnucash-xea \
|
||||
acctchrt_fixedassets.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_renter.gnucash-xea \
|
||||
acctchrt_retiremt.gnucash-xea \
|
||||
acctchrt_spouseinc.gnucash-xea \
|
||||
acctchrt_spouseretire.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,24 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/fr_FR
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_business.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_cdmoneymkt.gnucash-xea \
|
||||
acctchrt_childcare.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_currency.gnucash-xea \
|
||||
acctchrt_eduloan.gnucash-xea \
|
||||
acctchrt_fixedassets.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_renter.gnucash-xea \
|
||||
acctchrt_retiremt.gnucash-xea \
|
||||
acctchrt_spouseinc.gnucash-xea \
|
||||
acctchrt_spouseretire.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,24 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/hu_HU
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_business.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_cdmoneymkt.gnucash-xea \
|
||||
acctchrt_checkbook.gnucash-xea \
|
||||
acctchrt_childcare.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_eduloan.gnucash-xea \
|
||||
acctchrt_fixedassets.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_renter.gnucash-xea \
|
||||
acctchrt_retiremt.gnucash-xea \
|
||||
acctchrt_spouseinc.gnucash-xea \
|
||||
acctchrt_spouseretire.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,22 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/it
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_checkbook.gnucash-xea \
|
||||
acctchrt_childcare.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_fixedassets.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_renter.gnucash-xea \
|
||||
acctchrt_retiremt.gnucash-xea \
|
||||
acctchrt_spouseinc.gnucash-xea \
|
||||
acctchrt_spouseretire.gnucash-xea
|
||||
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,25 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/ja
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_business.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_cdmoneymkt.gnucash-xea \
|
||||
acctchrt_checkbook.gnucash-xea \
|
||||
acctchrt_childcare.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_eduloan.gnucash-xea \
|
||||
acctchrt_fixedassets.gnucash-xea \
|
||||
acctchrt_full.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_renter.gnucash-xea \
|
||||
acctchrt_retiremt.gnucash-xea \
|
||||
acctchrt_spouseinc.gnucash-xea \
|
||||
acctchrt_spouseretire.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,24 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/ko
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_business.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_cdmoneymkt.gnucash-xea \
|
||||
acctchrt_checkbook.gnucash-xea \
|
||||
acctchrt_childcare.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_eduloan.gnucash-xea \
|
||||
acctchrt_fixedassets.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_renter.gnucash-xea \
|
||||
acctchrt_retiremt.gnucash-xea \
|
||||
acctchrt_spouseinc.gnucash-xea \
|
||||
acctchrt_spouseretire.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,6 +1,6 @@
|
||||
SET(account_DATA acctchrt_business.gnucash-xea)
|
||||
|
||||
SET_DIST_LIST(LT_DIST ${account_DATA} Makefile.am CMakeLists.txt)
|
||||
SET_DIST_LIST(LT_DIST ${account_DATA} CMakeLists.txt)
|
||||
|
||||
INSTALL(FILES ${account_DATA} DESTINATION ${ACCOUNTS_INSTALL_DIR}/lt)
|
||||
FILE(COPY ${account_DATA} DESTINATION ${ACCOUNTS_BUILD_DIR}/lt)
|
||||
|
||||
@ -1,10 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/lt
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_business.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
|
||||
@ -1,25 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/lv
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_business.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_cdmoneymkt.gnucash-xea \
|
||||
acctchrt_checkbook.gnucash-xea \
|
||||
acctchrt_childcare.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_eduloan.gnucash-xea \
|
||||
acctchrt_fixedassets.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_renter.gnucash-xea \
|
||||
acctchrt_retiremt.gnucash-xea \
|
||||
acctchrt_spouseinc.gnucash-xea \
|
||||
acctchrt_spouseretire.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
acctchrt_full.gnucash-xea \
|
||||
CMakeLists.txt
|
||||
@ -1,26 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/nb
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_business.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_cdmoneymkt.gnucash-xea \
|
||||
acctchrt_checkbook.gnucash-xea \
|
||||
acctchrt_childcare.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_eduloan.gnucash-xea \
|
||||
acctchrt_fixedassets.gnucash-xea \
|
||||
acctchrt_full.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_renter.gnucash-xea \
|
||||
acctchrt_retiremt.gnucash-xea \
|
||||
acctchrt_spouseinc.gnucash-xea \
|
||||
acctchrt_spouseretire.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
acctchrt_full.gnucash-xea \
|
||||
CMakeLists.txt
|
||||
@ -1,10 +0,0 @@
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/nl
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_checkbook.gnucash-xea \
|
||||
acctchrt_full.gnucash-xea \
|
||||
acctchrt_rgs_1.1.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,25 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/pl
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_business.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_cdmoneymkt.gnucash-xea \
|
||||
acctchrt_checkbook.gnucash-xea \
|
||||
acctchrt_childcare.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_eduloan.gnucash-xea \
|
||||
acctchrt_fixedassets.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_renter.gnucash-xea \
|
||||
acctchrt_retiremt.gnucash-xea \
|
||||
acctchrt_spouseinc.gnucash-xea \
|
||||
acctchrt_spouseretire.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
acctchrt_full.gnucash-xea \
|
||||
CMakeLists.txt
|
||||
@ -1,23 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/pt_BR
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_cdmoneymkt.gnucash-xea \
|
||||
acctchrt_childcare.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_currency.gnucash-xea \
|
||||
acctchrt_eduloan.gnucash-xea \
|
||||
acctchrt_fixedassets.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_renter.gnucash-xea \
|
||||
acctchrt_retiremt.gnucash-xea \
|
||||
acctchrt_spouseinc.gnucash-xea \
|
||||
acctchrt_spouseretire.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,22 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/pt_PT
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_cdmoneymkt.gnucash-xea \
|
||||
acctchrt_childcare.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_eduloan.gnucash-xea \
|
||||
acctchrt_fixedassets.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_renter.gnucash-xea \
|
||||
acctchrt_retiremt.gnucash-xea \
|
||||
acctchrt_spouseinc.gnucash-xea \
|
||||
acctchrt_spouseretire.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,12 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/ru
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea \
|
||||
acctchrt_renter.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,23 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/sk
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_cdmoneymkt.gnucash-xea \
|
||||
acctchrt_childcare.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_currency.gnucash-xea \
|
||||
acctchrt_eduloan.gnucash-xea \
|
||||
acctchrt_fixedassets.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_homeown.gnucash-xea \
|
||||
acctchrt_otherloan.gnucash-xea \
|
||||
acctchrt_renter.gnucash-xea \
|
||||
acctchrt_retiremt.gnucash-xea \
|
||||
acctchrt_spouseinc.gnucash-xea \
|
||||
acctchrt_spouseretire.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,11 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/sv_AX
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_sbr-xbrl.gnucash-xea \
|
||||
acctchrt_rf.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,11 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/sv_FI
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_sbr-xbrl.gnucash-xea \
|
||||
acctchrt_rf.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,10 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/sv_SE
|
||||
|
||||
account_DATA = \
|
||||
bas_2012.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea
|
||||
EXTRA_DIST = \
|
||||
README.bas_2012 \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
@ -1,16 +0,0 @@
|
||||
|
||||
accountdir = ${GNC_ACCOUNTS_DIR}/tr_TR
|
||||
|
||||
account_DATA = \
|
||||
acctchrt_brokerage.gnucash-xea \
|
||||
acctchrt_carloan.gnucash-xea \
|
||||
acctchrt_cdmoneymkt.gnucash-xea \
|
||||
acctchrt_checkbook.gnucash-xea \
|
||||
acctchrt_common.gnucash-xea \
|
||||
acctchrt_fixedassets.gnucash-xea \
|
||||
acctchrt_homeloan.gnucash-xea \
|
||||
acctchrt_TEKDUZ.gnucash-xea
|
||||
|
||||
EXTRA_DIST = \
|
||||
${account_DATA} \
|
||||
CMakeLists.txt
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue