gnucash-docs maint: Multiple changes pushed

Geert Janssens gjanssens at code.gnucash.org
Sun Sep 26 17:07:39 EDT 2021


Updated	 via  https://github.com/Gnucash/gnucash-docs/commit/c9d6c6f8 (commit)
	 via  https://github.com/Gnucash/gnucash-docs/commit/a7cd0153 (commit)
	 via  https://github.com/Gnucash/gnucash-docs/commit/0803c5d9 (commit)
	from  https://github.com/Gnucash/gnucash-docs/commit/34481d06 (commit)



commit c9d6c6f8532154733b0996c404c66c6e8c327f9a
Author: TANIGUCHI Yasuaki <yasuakit at gmail.com>
Date:   Sun Sep 26 11:33:33 2021 +0900

    Remove unused or outdated files.
    * gnucash-docs.spec.in
    * CMakeNotes.txt
    * HACKING

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 87d480a6..fd5458a5 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -196,7 +196,6 @@ add_to_dist(
     COPYING
     COPYING-DOCS
     ChangeLog
-    HACKING
     NEWS
     README
     fop.xconf.in)
diff --git a/CMakeNotes.txt b/CMakeNotes.txt
deleted file mode 100644
index 6a84f1a4..00000000
--- a/CMakeNotes.txt
+++ /dev/null
@@ -1,52 +0,0 @@
-CMake Notes
------------
-CMake support is a work in progress.
-
-Current status:
-- basic cmake file layout is set up, that is all directories have
-  their CMakeLists.txt file
-- the common code to generate xml (install only) and html (build
-  and install) has been ported to cmake commands
-- pdf, epub and mobi generation has been ported
-- dist and distcheck and uninstall targets are implemented
-
-To do:
-- handle the special build rules for it (guide and help)
-- add windows specific chm file generation
-
-Notable changes:
-- while the dist targets work for both autotools and cmake the
-  cmake one will only result in a tarball suitable for autotools
-  if autotools has been run once before. the cmake build system
-  doesn't know how to generate the config related files generated by configure
-- scrollkeeper/omf support has been dropped. It used to be required
-  for yelp, but that tool stopped using omf after release 2.23.
-  All platforms we care about have more recent versions.
-- Japanese font substitution has been dumbed down. One can still pass
-  fonts and a font directory on the command line via -D switches,
-  but the code no longer checks if the font really exists. The resulting
-  pdf and fop output will indicate if there's an issue.
-- With autotools make one could descend into a directory for a specific
-  document and then just run make commands there. Those would affect
-  only that document. CMake on the other hand uses a top-level only
-  rules system so you can only enter commands from the top-level directory
-  That would normally also mean each command would be for the whole project
-  so entering "make html" would do so for all books and their translations.
-
-  To mitigate this, I am setting up targets in the form
-
-  <lang>-<docname>-<format>
-
-  for example
-
-  C-gnucash-guide-xml
-  C-gnucash-guide-html
-
-  For the build step you can use any of these targets to build only a particular
-  language and book. For partial installations it gets slightly more complicated.
-  In this case you have to set environment variable CMAKE_INSTALL_COMPONENT
-  to the wanted target before calling make install, for example:
-
-  CMAKE_INSTALL_COMPONENT=C-gnucash-guide-html make install
-
-  This will only install the English version of the guide in html.
diff --git a/HACKING b/HACKING
deleted file mode 100644
index 66d7d630..00000000
--- a/HACKING
+++ /dev/null
@@ -1,124 +0,0 @@
-Hacking on GnuCash Documentation Guidelines
-===========================================
-
-This document is an introduction to hacking the GnuCash documentation.
-
-For both reviewers and documentation writers;
-
-Please read the following guides:
-http://developer.gnome.org/gdp-handbook/stable/
-http://developer.gnome.org/gdp-style-guide/stable/
-
-Other useful references;
-
-The following links are for further sites that can help with the
-documentation and review process.
-http://www.docbook.org (has a comprehensive online guide to docbook)
-http://developer.gnome.org/hig-book/stable/ (GNOME Human Interface
-Guidelines)
-
-I suggest also subscribing to gnucash-devel, but this is not absolutely
-necessary.
-
-Reviewers;
-
-Please check out the documentation module from the GnuCash SVN -
-gnucash-docs. For those not familiar with svn, the gnucash wiki has a
-description at http://wiki.gnucash.org/wiki/Subversion The only change
-to get the docs is to change the checkout gnucash to checkout
-gnucash-docs. You can also start from the current docs tarball.
-
-I think the best way of retaining comments about docs in an easy to find
-way for everyone would be to use bugzilla.gnome.org to file the bugs
-under documentation. This can also be done using bug-buddy.
-
-Writers;
-
-Also checkout the docs svn as above. The usual procedure for
-contributors to GnuCash is to initially submit patches to the
-gnucash-devel mailing list, though I will also accept patches
-submitted to me directly. I will handle getting the patches added into
-SVN. You can also add the patch to a bug report in bugzilla if you wish.
-
-I would like writers to also let other know their intentions of which
-section they wish to tackle. Please forward this to gnucash-devel so
-that people can say 'hey I'm doing that already' or some such.
-
-You may also want to retail a local copy of the old documentation to
-refer to when writing. This still has a lot of useful information in it
-which hasn't been transferred to the new docs.
-
-NOTE: The id used in the <chapter> and <sect1> tags are important as they define
-the name used when the html pages are generated. Please be careful with these.
-
-<chapter> and <sect1> tags are also used to create the sidebar index in yelp
-and are an important bonus to ease-of-use of the final documentation.
-
-Chris Lyttle
-28th May 2006
-
---------------------
-
-SGML tweaks;
-
-There are a couple of common tweaks in the XML files to allow SGML tools to
-operate - for PDF generation. The tweaks are minor but common (and to those
-familiar with XML a touch bizarre / annoying). If necessary, I can add a
-Perl script to do the syntax changes automatically, but for now these are
-the changes:
-
-1. Avoid using the XML empty tag, specify the closing tag.
-	e.g. <para></para> instead of </para />
-2. Avoid a newline after <entry> tags.
-	e.g. <entry><para> instead of <entry>\n<para>
-3. Avoid underscores in id attribute values.
-	e.g. id="getting-started" instead of id="getting_started"
-5. Use <chapter> and <sect1>.
-
-These are minor and don't affect the normal XML content in any way.
-(OK, the loss of < /> adds some extra characters.) However, the problem
-with these is the sheer number of tags that use the pre-tweaked syntax.
-SGML tools can deal with small numbers of these errors (commonly <200),
-so this is an advisory. If you're editing the XML, please consider this
-advice and make my life a little easier when it comes to PDF's.
-
-Thanks.
-
-Neil Williams
-<linux at codehelp.co.uk>
-9th March 2005.
-
---------------------
-
-Generating PDF
-
-The GnuCash documentation build system can generate pdfs from the
-guide's and help manual's xml source files, provided you have the proper
-tools available on your system. This functionality was introduced by
-Tom Browder (<tom.browder at gmail.com>) and improved by
-Geert Janssens (<janssens-geert at telenet.be>).
-
-Other than xsltproc (which is already required to build html documentation)
-you also need Apache fop 0.95 or more recent. 
-
-At the time of this writing, you can install fop straight from any of the
-current distros' package repositories, or at least fop is available in one
-of the addon repositories.
-
-* Fedora 12 and up: fop is in the main repository
-* Debian Lenny: fop 0.95 has been backported
-* Debian Squeeze and up: fop is in the main repository
-* CentOS 5: fop can be installed via EPEL testing
-* Ubuntu 9.10 and up: fop is in the universe repository
-
-If your distro doesn't ship fop you can still install it manually. It
-is available at http://xmlgraphics.apache.org/fop
-and it requires:
-
-     a.  Sun Java JDK >= 1.4
-         available at: http://java.sun.com/javase/downloads/index.jsp
-
-         (I chose the "JDK 6 Update 7" download.)
-
-     b.  ant >= 1.7
-         available at: http://ant.apache.org
diff --git a/gnucash-docs.spec.in b/gnucash-docs.spec.in
deleted file mode 100644
index 2fd77923..00000000
--- a/gnucash-docs.spec.in
+++ /dev/null
@@ -1,49 +0,0 @@
-%define version @VERSION@
-
-Name:           gnucash-docs
-Summary:        This is the documentation module for GnuCash
-Version:        %{version}
-Release:        0
-License:        GNU Free Documentation License 1.1 or later
-Group:          Office/Finance
-URL:            https://www.gnucash.org
-Source:         https://sourceforge.net/projects/gnucash/files/gnucash%20(stable)/%{version}/gnucash-docs-%{version}.tar.gz
-BuildRequires:  fdupes
-BuildRequires:  sgml-skel
-BuildRequires:  xsltproc
-BuildArch:      noarch
-Recommends:     %{_bindir}/gnome-help
-
-%description
-GnuCash is a personal finance manager. A check-book like
-register GUI allows you to enter and track bank accounts,
-stocks, income and even currency trades. The interface is
-designed to be simple and easy to use, but is backed with
-double-entry accounting principles to ensure balanced books.
-This is the documentation module for GnuCash.
-
-%prep
-%setup -q
-
-%build
-%configure
-make %{?_smp_mflags}
-
-%install
-%make_install
-%find_lang gnucash-guide %{?no_lang_C}
-%find_lang gnucash-help %{?no_lang_C}
-%fdupes %{buildroot}%{_datadir}
-
-%files -f gnucash-guide.lang -f gnucash-help.lang
-%license COPYING
-%doc AUTHORS COPYING-DOCS HACKING NEWS README
-# Own dirs so we do not have to depend on libgnome
-%dir %{_datadir}/gnome
-%dir %{_datadir}/gnome/help
-%dir %{_datadir}/gnome/help/gnucash-guide
-%doc %{_datadir}/gnome/help/gnucash-guide/C/
-%dir %{_datadir}/gnome/help/gnucash-help
-%doc %{_datadir}/gnome/help/gnucash-help/C/
-
-%changelog

commit a7cd0153ed1de7c67184555832482428f64d8e80
Author: TANIGUCHI Yasuaki <yasuakit at gmail.com>
Date:   Sat Sep 25 21:05:53 2021 +0900

    Remove ScrollKeeper's OMF file.
    
    ScrollKeeper is deprecated, and it seems not to be used anymore. But omf files exist in each document directory.
    
    This PR removes OMF files.

diff --git a/guide/C/gnucash-guide-C.omf b/guide/C/gnucash-guide-C.omf
deleted file mode 100644
index 5df3beac..00000000
--- a/guide/C/gnucash-guide-C.omf
+++ /dev/null
@@ -1,111 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<omf>
-  <resource>
-    <creator>
-      chris at wilddev.net (Chris Lyttle)
-    </creator>
-    <creator>
-      carol at io.com (Carol Champagne)
-    </creator>
-    <maintainer>
-      gnucash-devel at gnucash.org (GnuCash Development Team)
-    </maintainer>
-    <contributor>
-      Yawar Amin
-    </contributor>
-    <contributor>
-      Derek Atkins
-    </contributor>
-    <contributor>
-      J. Alex Aycinena
-    </contributor>
-    <contributor>
-      Tom Browder
-    </contributor>
-    <contributor>
-      Frank H. Ellenberger
-    </contributor>
-    <contributor>
-      Mike Evans
-    </contributor>
-    <contributor>
-      Chris Good
-    </contributor>
-    <contributor>
-      David Hampton
-    </contributor>
-    <contributor>
-      David Harrison
-    </contributor>
-    <contributor>
-      Dave Hermann
-    </contributor>
-    <contributor>
-      Geert Janssens
-    </contributor>
-    <contributor>
-      Andreas Köhler
-    </contributor>
-    <contributor>
-      Jon Lapham
-    </contributor>
-    <contributor>
-      Chris Lyttle
-    </contributor>
-    <contributor>
-      Cristian Marchi
-    </contributor>
-    <contributor>
-      Sebastien Millet
-    </contributor>
-    <contributor>
-      John Ralls
-    </contributor>
-    <contributor>
-      Robert Ratliff
-    </contributor>
-    <contributor>
-      Michael Rensing
-    </contributor>
-    <contributor>
-      Zach Sadecki
-    </contributor>
-    <contributor>
-      Chris Shoemaker
-    </contributor>
-    <contributor>
-      Christian Stimming
-    </contributor>
-    <contributor>
-      David Suarez
-    </contributor>
-    <contributor>
-      Bengt Thuree
-    </contributor>
-    <contributor>
-      Michael Witten
-    </contributor>
-
-    <title>
-      GnuCash Tutorial and Concepts Guide
-    </title>    
-    <date>
-      2018-09-30
-    </date>
-    <version identifier="3.3" date="2018-09-30" description="Created for
-    GnuCash 3.3 Release"/>
-    <subject category="Applications|Office|Financial"/>
-    <description>
-      This document provides a tutorial and concepts guide for the GnuCash 
-      Financial Application.
-    </description>
-    <type>
-      user's guide
-    </type>
-    <format mime="text/xml" dtd="-//OASIS//DTD DocBook XML V4.1.2//EN"/>
-    <identifier url="gnucash-guide.xml"/>
-    <language code="C"/>
-    <relation seriesid="ef1352c0-0831-11d7-91de-f42a0df0ca1a"/>
-    <rights type="GNU FDL" license.version="1.1" holder="GnuCash Development Team"/>
-  </resource>
-</omf>
diff --git a/guide/de/gnucash-guide-de.omf b/guide/de/gnucash-guide-de.omf
deleted file mode 100644
index 4dfc3086..00000000
--- a/guide/de/gnucash-guide-de.omf
+++ /dev/null
@@ -1,56 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<omf>
-  <resource>
-    <creator>
-      chris at wilddev.net (Chris Lyttle)
-    </creator>
-    <creator>
-      carol at io.com (Carol Champagne)
-    </creator>
-    <maintainer>
-      gnucash-devel at gnucash.org (GnuCash Development Team)
-    </maintainer>
-    <contributor>
-      Frank H. Ellenberger
-    </contributor>
-    <contributor>
-      Juergen Hoewener
-    </contributor>
-    <contributor>
-      Martin Mainka
-    </contributor>
-    <contributor>
-      Niklas Spille
-    </contributor>
-    <contributor>
-      Mechtilde Stehmann
-    </contributor>
-     <contributor>
-      Christian Stimming
-    </contributor>
-    <contributor>
-      Gerold Strobel
-    </contributor>
-    <title>
-      GnuCash Kurs und Konzepte
-    </title>    
-    <date>
-      2018-04-28
-    </date>
-    <version identifier="3.0" date="2018-04-28" description="Created for
-    GnuCash 3.1 Release"/>
-    <subject category="Applications|Office|Financial"/>
-    <description>
-      Diese Einführung enthält ein Tutorium zur Benutzung von GnuCash und beschreibt die Konzepte
-      dahinter.
-    </description>
-    <type>
-      user's guide
-    </type>
-    <format mime="text/xml" dtd="-//OASIS//DTD DocBook XML V4.1.2//EN"/>
-    <identifier url="gnucash-guide.xml"/>
-    <language code="de"/>
-    <relation seriesid="ef1352c0-0831-11d7-91de-f42a0df0ca1a"/>
-    <rights type="GNU FDL" license.version="1.1" holder="GnuCash Development Team"/>
-  </resource>        
-</omf>
diff --git a/guide/it/gnucash-guide-it.omf b/guide/it/gnucash-guide-it.omf
deleted file mode 100644
index df472f75..00000000
--- a/guide/it/gnucash-guide-it.omf
+++ /dev/null
@@ -1,38 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<omf>
-  <resource>
-    <creator>
-      chris at wilddev.net (Chris Lyttle)
-    </creator>
-    <creator>
-      carol at io.com (Carol Champagne)
-    </creator>
-    <maintainer>
-      gnucash-devel at gnucash.org (GnuCash Development Team)
-    </maintainer>
-    <contributor>
-      Cristian Marchi
-    </contributor>
-    <title>
-      GnuCash - Guida ai concetti e manuale
-    </title>    
-    <date>
-      2018-04-01
-    </date>
-    <version identifier="3.0" date="2018-04-01" description="Created for
-    GnuCash 3.0 Release"/>
-    <subject category="Applications|Office|Financial"/>
-    <description>
-      Questo documento costituisce la guida ai concetti e il manuale per il programma
-      finanziario GnuCash.
-    </description>
-    <type>
-      guida dell'utente
-    </type>
-    <format mime="text/xml" dtd="-//OASIS//DTD DocBook XML V4.1.2//EN"/>
-    <identifier url="gnucash-guide.xml"/>
-    <language code="it"/>
-    <relation seriesid="ef1352c0-0831-11d7-91de-f42a0df0ca1a"/>
-    <rights type="GNU FDL" license.version="1.1" holder="GnuCash Development Team"/>
-  </resource>        
-</omf>
diff --git a/guide/ja/gnucash-guide-ja.omf b/guide/ja/gnucash-guide-ja.omf
deleted file mode 100644
index 41f16059..00000000
--- a/guide/ja/gnucash-guide-ja.omf
+++ /dev/null
@@ -1,38 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<omf>
-  <resource>
-    <creator>
-      chris at wilddev.net (Chris Lyttle)
-    </creator>
-    <creator>
-      carol at io.com (Carol Champagne)
-    </creator>
-    <maintainer>
-      gnucash-devel at gnucash.org (GnuCash Development Team)
-    </maintainer>
-    <contributor>
-      Yasuaki Taniguchi
-    </contributor>
-
-    <title>
-      GnuCashチュートリアルとコンセプトガイド
-    </title>    
-    <date>
-      2018-04-01
-    </date>
-    <version identifier="3.0" date="2018-04-01" description="Created for
-    GnuCash 3.0 Release"/>
-    <subject category="Applications|Office|Financial"/>
-    <description>
-      本書は財務ソフトウェアGnuCashのチュートリアルとコンセプトガイドです。
-    </description>
-    <type>
-      user's guide
-    </type>
-    <format mime="text/xml" dtd="-//OASIS//DTD DocBook XML V4.1.2//EN"/>
-    <identifier url="gnucash-guide.xml"/>
-    <language code="ja"/>
-    <relation seriesid="ef1352c0-0831-11d7-91de-f42a0df0ca1a"/>
-    <rights type="GNU FDL" license.version="1.1" holder="GnuCash Development Team"/>
-  </resource>        
-</omf>
diff --git a/guide/pt/gnucash-guide-pt.omf b/guide/pt/gnucash-guide-pt.omf
deleted file mode 100644
index d4a23c8c..00000000
--- a/guide/pt/gnucash-guide-pt.omf
+++ /dev/null
@@ -1,112 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<omf>
-  <resource>
-    <creator>
-      chris at wilddev.net (Chris Lyttle)
-    </creator>
-    <creator>
-      carol at io.com (Carol Champagne)
-    </creator>
-    <maintainer>
-      gnucash-devel at gnucash.org (GnuCash Development Team)
-    </maintainer>
-    <contributor>
-      Yawar Amin
-    </contributor>
-    <contributor>
-      Derek Atkins
-    </contributor>
-    <contributor>
-      J. Alex Aycinena
-    </contributor>
-    <contributor>
-      Tom Browder
-    </contributor>
-    <contributor>
-      Frank H. Ellenberger
-    </contributor>
-    <contributor>
-      Mike Evans
-    </contributor>
-    <contributor>
-      Chris Good
-    </contributor>
-    <contributor>
-      David Hampton
-    </contributor>
-    <contributor>
-      David Harrison
-    </contributor>
-    <contributor>
-      Dave Hermann
-    </contributor>
-    <contributor>
-      Geert Janssens
-    </contributor>
-    <contributor>
-      Andreas Köhler
-    </contributor>
-    <contributor>
-      Jon Lapham
-    </contributor>
-    <contributor>
-      Chris Lyttle
-    </contributor>
-    <contributor>
-      Cristian Marchi
-    </contributor>
-    <contributor>
-      Sebastien Millet
-    </contributor>
-    <contributor>
-      John Ralls
-    </contributor>
-    <contributor>
-      Robert Ratliff
-    </contributor>
-    <contributor>
-      Michael Rensing
-    </contributor>
-    <contributor>
-      Zach Sadecki
-    </contributor>
-    <contributor>
-      Chris Shoemaker
-    </contributor>
-    <contributor>
-      Christian Stimming
-    </contributor>
-    <contributor>
-      David Suarez
-    </contributor>
-    <contributor>
-      Bengt Thuree
-    </contributor>
-    <contributor>
-      Michael Witten
-    </contributor>
-    <contributor>
-      Pedro Albuquerque
-    </contributor>
-    <title>
-      Gnucash Tutorial e Guia de Conceitos
-    </title>
-    <date>
-      2018-04-01
-    </date>
-    <version identifier="3.0" date="2018-04-01" description="Created for
-    GnuCash 3.0 Release"/>
-    <subject category="Applications|Office|Financial"/>
-    <description>
-      Este documento fornece um guia tutorial e conceitos para o GnuCash Aplicação financeira.
-    </description>
-    <type>
-      user's guide
-    </type>
-    <format mime="text/xml" dtd="-//OASIS//DTD DocBook XML V4.1.2//EN"/>
-    <identifier url="gnucash-guide.xml"/>
-    <language code="pt"/>
-    <relation seriesid="ef1352c0-0831-11d7-91de-f42a0df0ca1a"/>
-    <rights type="GNU FDL" license.version="1.1" holder="GnuCash Development Team"/>
-  </resource>
-</omf>
diff --git a/guide/ru/gnucash-guide-ru.omf b/guide/ru/gnucash-guide-ru.omf
deleted file mode 100644
index 360db107..00000000
--- a/guide/ru/gnucash-guide-ru.omf
+++ /dev/null
@@ -1,114 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<omf>
-  <resource>
-    <creator>
-      chris at wilddev.net (Chris Lyttle)
-    </creator>
-    <creator>
-      carol at io.com (Carol Champagne)
-    </creator>
-    <maintainer>
-      gnucash-devel at gnucash.org (GnuCash Development Team)
-    </maintainer>
-    <contributor>
-      Yawar Amin
-    </contributor>
-    <contributor>
-      Derek Atkins
-    </contributor>
-    <contributor>
-      J. Alex Aycinena
-    </contributor>
-    <contributor>
-      Tom Browder
-    </contributor>
-    <contributor>
-      Frank H. Ellenberger
-    </contributor>
-    <contributor>
-      Mike Evans
-    </contributor>
-    <contributor>
-      Chris Good
-    </contributor>
-    <contributor>
-      David Hampton
-    </contributor>
-    <contributor>
-      David Harrison
-    </contributor>
-    <contributor>
-      Dave Hermann
-    </contributor>
-    <contributor>
-      Geert Janssens
-    </contributor>
-    <contributor>
-      Andreas Köhler
-    </contributor>
-    <contributor>
-      Jon Lapham
-    </contributor>
-    <contributor>
-      Chris Lyttle
-    </contributor>
-    <contributor>
-      Cristian Marchi
-    </contributor>
-    <contributor>
-      Sebastien Millet
-    </contributor>
-    <contributor>
-      John Ralls
-    </contributor>
-    <contributor>
-      Robert Ratliff
-    </contributor>
-    <contributor>
-      Michael Rensing
-    </contributor>
-    <contributor>
-      Zach Sadecki
-    </contributor>
-    <contributor>
-      Chris Shoemaker
-    </contributor>
-    <contributor>
-      Christian Stimming
-    </contributor>
-    <contributor>
-      David Suarez
-    </contributor>
-    <contributor>
-      Bengt Thuree
-    </contributor>
-    <contributor>
-      Michael Witten
-    </contributor>
-    <contributor>
-      Dmitriy Mangul
-    </contributor>
-    <contributor>
-      Anton Tarasov
-    </contributor>
-    <title>
-      Практическое руководство по GnuCash
-    </title>
-    <date>
-      2018-04-01
-    </date>
-    <version identifier="3.0" date="2018-04-01" description="Создано для версии GnuCash 3.0"/>
-    <subject category="GNOME|Applications|Financial"/>
-    <description>
-      Этот документ является практическим руководством для финансовой программы GnuCash.
-    </description>
-    <type>
-      практическое руководство
-    </type>
-    <format mime="text/xml" dtd="-//OASIS//DTD DocBook XML V4.1.2//EN"/>
-    <identifier url="gnucash-guide.xml"/>
-    <language code="ru"/>
-    <relation seriesid="0a127098-3892-a788-1c87-f779d6abbc65d0"/>
-    <rights type="GNU FDL" license.version="1.1" holder="GnuCash Development Team"/>
-  </resource>
-</omf>
diff --git a/help/C/gnucash-help-C.omf b/help/C/gnucash-help-C.omf
deleted file mode 100644
index 13b4eabb..00000000
--- a/help/C/gnucash-help-C.omf
+++ /dev/null
@@ -1,71 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<omf>
-  <resource>
-    <creator>
-      chris at wilddev.net (Chris Lyttle)
-    </creator>
-    <maintainer>
-      gnucash-devel at gnucash.org (GnuCash Development Team)
-    </maintainer>
-    <contributor>
-      Mike Alexander
-    </contributor>
-    <contributor>
-      Yawar Amin
-    </contributor>
-    <contributor>
-      J. Alex Aycinena
-    </contributor>
-    <contributor>
-      Frank H. Ellenberger
-    </contributor>
-    <contributor>
-      Chris Good
-    </contributor>    
-    <contributor>
-      David Hampton
-    </contributor>
-    <contributor>
-      Geert Janssens
-    </contributor>
-    <contributor>
-      Chris Lyttle
-    </contributor>
-    <contributor>
-      Cristian Marchi
-    </contributor>
-    <contributor>
-      John Ralls
-    </contributor>
-    <contributor>
-      Robert Ratliff
-    </contributor>
-    <contributor>
-      Christian Stimming
-    </contributor>
-    <contributor>
-      Jesse Weinstein 
-    </contributor>
-    <title>
-      GnuCash Help Manual
-    </title>    
-    <date>
-      2018-06-24
-    </date>
-    <version identifier="3.3" date="2018-09-30" description="Created for
-    GnuCash 3.3 Release"/>
-    <subject category="Applications|Office|Financial"/>
-    <description>
-      This document provides basic help on how to use the GnuCash Financial
-      Application.
-    </description>
-    <type>
-      user's guide
-    </type>
-    <format mime="text/xml" dtd="-//OASIS//DTD DocBook XML V4.1.2//EN"/>
-    <identifier url="gnucash-help.xml"/>
-    <language code="C"/>
-    <relation seriesid="c009f916-0589-11d7-93d6-bb01d827c635"/>
-    <rights type="GNU FDL" license.version="1.1" holder="GnuCash Development Team"/>
-  </resource>
-</omf>
diff --git a/help/de/gnucash-help-de.omf b/help/de/gnucash-help-de.omf
deleted file mode 100644
index f84a46f5..00000000
--- a/help/de/gnucash-help-de.omf
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<omf>
-  <resource>
-    <creator>
-      chris at wilddev.net (Chris Lyttle)
-    </creator>
-    <maintainer>
-      chris at wilddev.net (Chris Lyttle)
-    </maintainer>
-    <contributor>
-      Frank H. Ellenberger
-    </contributor>
-    <contributor>
-      Niklas Spille
-    </contributor>
-    <contributor>
-      Holger Stöhr
-    </contributor>
-    <contributor>
-      stimming at tuhh.de (Christian Stimming)
-    </contributor>
-    <title>
-      GnuCash Help Manual
-    </title>
-    <date>
-      2018-04-01
-    </date>
-    <version identifier="3.0" date="2018-04-01" description="Created for
-    GnuCash 3.0 Release"/>
-    <subject category="Applications|Office|Financial"/>
-    <description>
-      This document provides basic help on how to use the GnuCash Financial
-      Application.
-    </description>
-    <type>
-      user's guide
-    </type>
-    <format mime="text/xml" dtd="-//OASIS//DTD DocBook XML V4.1.2//EN"/>
-    <identifier url="gnucash-help.xml"/>
-    <language code="de"/>
-    <relation seriesid="c009f916-0589-11d7-93d6-bb01d827c635"/>
-    <rights type="GNU FDL" license.version="1.1" holder="GnuCash Development Team"/>
-  </resource>        
-</omf>
diff --git a/help/it/gnucash-help-it.omf b/help/it/gnucash-help-it.omf
deleted file mode 100644
index a4df68a9..00000000
--- a/help/it/gnucash-help-it.omf
+++ /dev/null
@@ -1,35 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<omf>
-  <resource>
-    <creator>
-      chris at wilddev.net (Chris Lyttle)
-    </creator>
-    <maintainer>
-      gnucash-devel at gnucash.org (Gnucash Development Team)
-    </maintainer>
-    <contributor>
-      Cristian Marchi
-    </contributor>
-    <title>
-      Manuale di aiuto di GnuCash
-    </title>    
-    <date>
-      2018-04-01
-    </date>
-    <version identifier="3.0" date="2018-04-01" description="Created for
-    GnuCash 3.0 Release"/>
-    <subject category="Applications|Office|Financial"/>
-    <description>
-      Questo documento fornisce un semplice aiuto all'utilizzo dell'applicazione finanziaria
-      GnuCash.
-    </description>
-    <type>
-      guida dell'utente
-    </type>
-    <format mime="text/xml" dtd="-//OASIS//DTD DocBook XML V4.1.2//EN"/>
-    <identifier url="gnucash-help.xml"/>
-    <language code="it"/>
-    <relation seriesid="c009f916-0589-11d7-93d6-bb01d827c635"/>
-    <rights type="GNU FDL" license.version="1.1" holder="GnuCash Development Team"/>
-  </resource>        
-</omf>
diff --git a/help/pt/gnucash-help-pt.omf b/help/pt/gnucash-help-pt.omf
deleted file mode 100644
index a707fdc0..00000000
--- a/help/pt/gnucash-help-pt.omf
+++ /dev/null
@@ -1,73 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<omf>
-  <resource>
-    <creator>
-      chris at wilddev.net (Chris Lyttle)
-    </creator>
-    <maintainer>
-      gnucash-devel at gnucash.org (GnuCash Development Team)
-    </maintainer>
-    <contributor>
-      Mike Alexander
-    </contributor>
-    <contributor>
-      Yawar Amin
-    </contributor>
-    <contributor>
-      J. Alex Aycinena
-    </contributor>
-    <contributor>
-      Frank H. Ellenberger
-    </contributor>
-    <contributor>
-      Chris Good
-    </contributor>    
-    <contributor>
-      David Hampton
-    </contributor>
-    <contributor>
-      Geert Janssens
-    </contributor>
-    <contributor>
-      Chris Lyttle
-    </contributor>
-    <contributor>
-      Cristian Marchi
-    </contributor>
-    <contributor>
-      John Ralls
-    </contributor>
-    <contributor>
-      Robert Ratliff
-    </contributor>
-    <contributor>
-      Christian Stimming
-    </contributor>
-    <contributor>
-      Jesse Weinstein
-    </contributor>
-    <contributor>
-      Pedro Albuquerque
-    </contributor>
-    <title>
-      Manual de ajuda do Gnucash
-    </title>
-    <date>
-      2018-04-01
-    </date>
-    <version identifier="3.0" date="2018-04-01" description="Created for
-    GnuCash 3.0 Release"/>
-    <subject category="Applications|Office|Financial"/>
-    <description>
-     Este documento fornece ajuda básica sobre como utilizar o GnuCash - aplicação financeira.
-    </description>
-    <type>
-      user's guide
-    </type>
-    <format mime="text/xml" dtd="-//OASIS//DTD DocBook XML V4.1.2//EN"/>
-    <identifier url="gnucash-help.xml"/>
-    <language code="pt"/>
-    <relation seriesid="c009f916-0589-11d7-93d6-bb01d827c635"/>
-    <rights type="GNU FDL" license.version="1.1" holder="GnuCash Development Team"/>
-  </resource>
-</omf>

commit 0803c5d9d739e3cd78475ad78f4f973bc258b67a
Author: TANIGUCHI Yasuaki <yasuakit at gmail.com>
Date:   Wed Sep 22 12:01:34 2021 +0900

    Remove autotools.
    
    Remove autotools completely.
    Modify autotols related cmake files.
    Update README.

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2ab69fea..87d480a6 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -53,10 +53,6 @@ else()
 endif()
 option (WITH_MOBI "Enable build rules for Mobipocket document format" OFF)
 
-# If AUTOTOOLS_IN_DIST is OFF, then 'dist' wont run autogen.sh, and 'distcheck'
-# won't run the autotools distcheck. Note that various Makefile.am files are still
-# included in the dist when this is OFF. I'll fix that at some point.
-option (AUTOTOOLS_IN_DIST "Add autotools support to distribution tarballs." ON)
 # ############################################################
 # Following parameters can equally be set using -D switches on the CMake command line.
 # Set font dirs and font for Russian pdf documents
@@ -185,21 +181,6 @@ endif()
 add_subdirectory (guide)
 add_subdirectory (help)
 
-if(AUTOTOOLS_IN_DIST)
-    set(autotoolsfiles
-        configure.ac
-        Makefile.am
-        gnucash-docs.spec.in
-        chm.make
-        epub.make
-        mobi.make
-        omf.make
-        pdf.make
-        xmldocs.make)
-
-    add_to_dist(${autotoolsfiles})
-endif()
-
 file(GLOB_RECURSE extrafiles
     RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
     cmake/* fonts/* stylesheet/* xsl/* docbook/*)
@@ -231,7 +212,6 @@ add_custom_command(OUTPUT ${DIST_FILE}.gz ${DIST_FILE}.bz2
            -D GNUCASH_SOURCE_DIR=${CMAKE_SOURCE_DIR}
            -D BUILD_SOURCE_DIR=${CMAKE_BINARY_DIR}
            "-Ddist_files=\"${dist_files}\""
-           -D AUTOTOOLS_IN_DIST=${AUTOTOOLS_IN_DIST}
            -D SHELL=${SHELL}
            -P ${CMAKE_SOURCE_DIR}/cmake/MakeDist.cmake
 
@@ -246,7 +226,6 @@ add_custom_target(distcheck DEPENDS dist
             -D CMAKE_MODULE_PATH=${CMAKE_SOURCE_DIR}/cmake
             -D PACKAGE_PREFIX=${PACKAGE_PREFIX}
             -D GNUCASH_SOURCE_DIR=${CMAKE_SOURCE_DIR}
-            -D AUTOTOOLS_IN_DIST=${AUTOTOOLS_IN_DIST}
             -D SHELL=${SHELL}
             -P ${CMAKE_SOURCE_DIR}/cmake/MakeDistCheck.cmake
         )
diff --git a/Makefile.am b/Makefile.am
deleted file mode 100644
index 27d4a362..00000000
--- a/Makefile.am
+++ /dev/null
@@ -1,83 +0,0 @@
-SUBDIRS = help \
-	  guide
-
-EXTRA_DIST = COPYING-DOCS \
-	     CMakeLists.txt \
-	     xmldocs.make \
-	     omf.make \
-	     pdf.make \
-	     chm.make \
-	     docbook \
-	     stylesheet \
-	     xsl \
-	     HACKING \
-	     README \
-	     cmake/AddChmTarget.cmake \
-	     cmake/AddEpubTarget.cmake \
-	     cmake/AddGHelpTarget.cmake \
-	     cmake/AddGncDocTargets.cmake \
-	     cmake/AddHtmlTarget.cmake \
-	     cmake/AddPdfTarget.cmake \
-	     cmake/cmake_uninstall.cmake.in \
-	     cmake/DistCommon.cmake \
-	     cmake/MakeChm.cmake \
-	     cmake/MakeDistCheck.cmake \
-	     cmake/MakeDist.cmake \
-	     fonts/gothic.xml \
-	     fonts/mincho.xml \
-	     fonts/truetype/ume-tgo4.ttf \
-	     fonts/truetype/ume-tmo3.ttf \
-	     fonts/opentype/freefont/FreeMonoBoldOblique.otf \
-	     fonts/opentype/freefont/FreeMonoBold.otf \
-	     fonts/opentype/freefont/FreeMonoOblique.otf \
-	     fonts/opentype/freefont/FreeMono.otf \
-	     fonts/opentype/freefont/FreeSansBoldOblique.otf \
-	     fonts/opentype/freefont/FreeSansBold.otf \
-	     fonts/opentype/freefont/FreeSansOblique.otf \
-	     fonts/opentype/freefont/FreeSans.otf \
-	     fonts/opentype/freefont/FreeSerifBoldItalic.otf \
-	     fonts/opentype/freefont/FreeSerifBold.otf \
-	     fonts/opentype/freefont/FreeSerifItalic.otf \
-	     fonts/opentype/freefont/FreeSerif.otf \
-	     fonts/README.Fonts \
-	     fop.xconf.in
-
-DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper
-
-dist-hook:
-	rm -rf `find $(distdir)/stylesheet -name \.svn`
-	rm -rf `find $(distdir)/stylesheet -name \.git`
-	rm -rf `find $(distdir)/xsl -name \.svn`
-	rm -rf `find $(distdir)/xsl -name \.git`
-
-distuninstallcheck_listfiles =  \
-find -regex '.*/var/scrollkeeper/.*' -prune -or -type f -print
-
-if WITH_MOBI
-  MOBI_RECURSIVE = mobi-recursive
-mobi: mobi-recursive
-endif
-
-epub: epub-recursive
-
-epub-recursive $(MOBI_RECURSIVE):
-	@fail= failcom='exit 1'; \
-	for f in x $$MAKEFLAGS; do \
-	  case $$f in \
-	    *=* | --[!k]*);; \
-	    *k*) failcom='fail=yes';; \
-	  esac; \
-	done; \
-	dot_seen=no; \
-	target=`echo $@ | sed s/-recursive//`; \
-	list="$(SUBDIRS)"; for subdir in $$list; do \
-	  echo "Making $$target in $$subdir"; \
-	  if test "$$subdir" = "."; then \
-	    dot_seen=yes; \
-	    local_target="$$target-am"; \
-	  else \
-	    local_target="$$target"; \
-	  fi; \
-	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
-	  || eval $$failcom; \
-	done; test -z "$$fail"
diff --git a/README b/README
index e9904f76..ae46f421 100644
--- a/README
+++ b/README
@@ -21,8 +21,6 @@ Requirements
 * cmake with
 ** ninja or
 ** make
-or
-* autotools (deprecated)
 
 * libxml2
 * libxslt [Debian packed the required xsltproc in a separate package, 
@@ -105,17 +103,6 @@ For cmake the commands are
   # or, if you need mobi
   cmake -DWITH_MOBI=ON [options…]
 
-For the deprecated autotools system the commands are:
-  cd gnucash-docs
-  ./autogen.sh
-  mkdir build && cd build
-  # If you don't need mobi
-  ../configure
-  # or, if you need mobi
-  ../configure --with-mobi
-
-=> This will tell you if you are missing some required tools.
-
 To generate the documentation in html format, run
 
   make html
@@ -159,28 +146,6 @@ For example:
 will generate the html version of the help document in all supported
 languages.
 
-- Autotools (deprecated)
-Go into the directory for that subset and run the above make commands
-from there. For example to only generate the English concepts guide:
-
-  cd guide/C
-  make html
-
-or
-
-  cd guide/C
-  make pdf
-
-or
-
-  cd guide/C
-  make epub
-
-or
-
-  cd guide/C
-  make mobi
-
 depending on the output format you require.
 
 * running xmllint
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index cf0b23bf..00000000
--- a/autogen.sh
+++ /dev/null
@@ -1,63 +0,0 @@
-#!/bin/sh -x
-# Run this to generate all the initial makefiles, etc.
-
-# Exit this script if any command fails with non-zero exit status.
-set -e
-
-if test -z "$srcdir" ; then srcdir=`dirname $0` ; fi
-if test -z "$srcdir" ; then srcdir=.            ; fi
-cd $srcdir
-
-PROJECT=gnucash-docs
-DIE=0
-
-# First cache the command names in variables. If you want to
-# override the names, simply set the variables before calling this
-# script.
-
-#: ${INTLTOOLIZE=intltoolize}
-#: ${GETTEXTIZE=gettextize}
-: ${LIBTOOLIZE=libtoolize}
-: ${ACLOCAL=aclocal}
-: ${AUTOHEADER=autoheader}
-: ${AUTOMAKE=automake}
-: ${AUTOCONF=autoconf}
-ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I ."
-
-(${AUTOCONF} --version) < /dev/null > /dev/null 2>&1 || {
-	echo
-	echo "You must have autoconf installed to compile $PROJECT."
-	echo "Download the appropriate package for your distribution,"
-	echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
-	DIE=1
-}
-
-(${LIBTOOLIZE} --version) < /dev/null > /dev/null 2>&1 || {
-	echo
-	echo "You must have libtoolize installed to compile $PROJECT."
-	echo "Get ftp://alpha.gnu.org/gnu/libtool-1.0h.tar.gz"
-	echo "(or a newer version if it is available)"
-	DIE=1
-}
-
-(${AUTOMAKE} --version) < /dev/null > /dev/null 2>&1 || {
-	echo
-	echo "You must have automake installed to compile $PROJECT."
-	echo "Get ftp://ftp.cygnus.com/pub/home/tromey/automake-1.2d.tar.gz"
-	echo "(or a newer version if it is available)"
-	DIE=1
-}
-
-if test "$DIE" -eq 1; then
-	exit 1
-fi
-
-#${INTLTOOLIZE}
-#${GETTEXTIZE}
-${LIBTOOLIZE} -f --automake
-${ACLOCAL} ${ACLOCAL_FLAGS}
-#${AUTOHEADER}
-${AUTOMAKE} --add-missing
-${AUTOCONF}
-
-echo You must now run ./configure "$@"
diff --git a/chm.make b/chm.make
deleted file mode 100644
index ddc293f0..00000000
--- a/chm.make
+++ /dev/null
@@ -1,49 +0,0 @@
-# Create CHM help files for Win32
-# Copyright 2017 John Ralls <jralls at ceridwen.us>
-# Procedure lifted from make_chm() in gnucash-on-windows.git:install-impl.sh,
-# originally written by Andreas Köhler.
-
-chmfile=$(docname).chm
-mapfile=$(docname).hhmap
-
-htmlhelp_xsl="http://docbook.sourceforge.net/release/xsl/current/htmlhelp/htmlhelp.xsl"
-
-$(chmfile): $(entities) $(figfiles)
-$(mapfile): $(chmfile)
-
-chm-local: $(chmfile) $(mapfile)
-
-install-chm-local: $(chmfile) $(mapfile)
-	$(mkinstalldirs) $(DESTDIR)$(docdir)/$(lang)
-	$(INSTALL_DATA) $(chmfile) $(DESTDIR)$(docdir)/$(lang)
-	$(INSTALL_DATA) $(mapfile) $(DESTDIR)$(docdir)/$(lang)
-
-.xml.chm:
-	${XSLTPROC} $(XSLTPROCFLAGS) --stringparam htmlhelp.chm $(chmfile) ${htmlhelp_xsl} ${srcdir}/$(docname).xml
-	if test ! -d ${builddir}/figures ; then \
-		ln -s ${srcdir}/figures ${builddir} ; \
-	fi
-	count=0
-	echo >> htmlhelp.hhp
-	echo "[ALIAS]" >> htmlhelp.hhp
-	echo "IDH_0=index.html" >> htmlhelp.hhp
-	echo "#define IDH_0 0" > mymaps
-	echo "[Map]" > htmlhelp.hhmap
-	echo "Searching for anchors ..."
-	for id in `cat ${srcdir}/*.xml | sed '/sect.*id=/!d;s,.*id=["'\'']\([^"'\'']*\)["'\''].*,\1,'` ; do \
-		files=`grep -l "[\"']$${id}[\"']" *.html` || continue; \
-		echo "IDH_$$((++count))=$${files}#$${id}" >> htmlhelp.hhp; \
-		echo "#define IDH_$${count} $${count}" >> mymaps; \
-		echo "$${id}=$${count}" >> htmlhelp.hhmap; \
-	done
-	echo >> htmlhelp.hhp
-	echo "[MAP]" >> htmlhelp.hhp
-	cat mymaps >> htmlhelp.hhp
-	rm mymaps
-	"${HHC}" htmlhelp.hhp  >/dev/null  || true
-	mv htmlhelp.hhmap $(mapfile)
-
-CLEANFILES += $(chmfile) $(mapfile) htmlhelp.hhp *.html toc.hhc
-# Don't try to make dist from windows, this is here only to silence an
-# error from the Italian translations.
-EXTRA_DIST = $(entities) $(docname).xml
diff --git a/cmake/AddGncDocTargets.cmake b/cmake/AddGncDocTargets.cmake
index 924fd250..b327ebad 100644
--- a/cmake/AddGncDocTargets.cmake
+++ b/cmake/AddGncDocTargets.cmake
@@ -38,12 +38,6 @@ function (add_gnc_doc_targets docname entities)
       add_mobi_target(${docname} ${lang})
     endif()
 
-    if(AUTOTOOLS_IN_DIST)
-        set(autotoolsfiles
-            Makefile.am
-            ${docname}-${lang}.omf)
-    endif()
-
     file(GLOB_RECURSE figures_dist
         RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
         figures/*.png figures/*.svg)
@@ -52,7 +46,6 @@ function (add_gnc_doc_targets docname entities)
         CMakeLists.txt
         ${docname}.xml
         ${entities}
-        ${autotoolsfiles}
         ${figures_dist})
 
 endfunction()
diff --git a/cmake/MakeDist.cmake b/cmake/MakeDist.cmake
index 7f53cc6e..023080c0 100644
--- a/cmake/MakeDist.cmake
+++ b/cmake/MakeDist.cmake
@@ -10,39 +10,6 @@
 
 include(${CMAKE_MODULE_PATH}/DistCommon.cmake)
 
-function(find_automake AUTOMAKE_VAR ACLOCAL_VAR AUTOMAKE_VERSION_VAR)
-    find_program(AUTOMAKE automake)
-    execute_process(
-            COMMAND ${AUTOMAKE} --version
-            RESULT_VARIABLE AUTOMAKE_RESULT
-            OUTPUT_VARIABLE AUTOMAKE_OUTPUT
-            ERROR_VARIABLE AUTOMAKE_ERROR
-    )
-
-    set(NEED_OVERRIDE FALSE)
-    if(AUTOMAKE)
-        string(REGEX REPLACE ".*automake \\(GNU automake\\) ([0-9]\\.[0-9]+).*" "\\1" AUTOMAKE_VERSION "${AUTOMAKE_OUTPUT}")
-        find_program(ACLOCAL aclocal)
-        if(NOT ACLOCAL)
-            message(FATAL_ERROR "Found ok version of automake, but can't find aclocal")
-        endif()
-    else()
-        message(FATAL_ERROR "Can't find 'automake' or 'automake-1.11'")
-        message("  You can set AUTOTOOLS_IN_DIST=OFF to exclude autotools support.")
-    endif()
-    set(${AUTOMAKE_VAR} ${AUTOMAKE} PARENT_SCOPE)
-    set(${ACLOCAL_VAR} ${ACLOCAL} PARENT_SCOPE)
-    set(${AUTOMAKE_VERSION_VAR} ${AUTOMAKE_VERSION} PARENT_SCOPE)
-endfunction()
-
-function(find_autogen)
-  find_file(AUTOGEN autogen.sh
-    HINTS "${GNUCASH_SOURCE_DIR}"
-    NO_DEFAULT_PATH)
-  if(NOT AUTOGEN)
-    message(FATAL_ERROR "No autogen.sh in ${GNUCASH_SOURCE_DIR}. Either you're trying to make a distribution tarball from something other than a repository clone or your clone is defective. You can continue if you insist by passing -DAUTOTOOLS_IN_DIST=NO to cmake.")
-  endif()
-endfunction()
 
 function(make_dist PACKAGE_PREFIX GNUCASH_SOURCE_DIR BUILD_SOURCE_DIR)
 
@@ -63,44 +30,6 @@ function(make_dist PACKAGE_PREFIX GNUCASH_SOURCE_DIR BUILD_SOURCE_DIR)
         file(COPY ${GNUCASH_SOURCE_DIR}/${file} DESTINATION ${PACKAGE_PREFIX}/${dir})
     endforeach()
 
-    cmake_policy(SET CMP0012 NEW)
-
-    # When making a dist tarball including autotools files
-    # the Makefile.in files must generated by running autogen.sh
-
-    if(AUTOTOOLS_IN_DIST)
-        find_autogen(AUTOGEN)
-        find_automake(AUTOMAKE ACLOCAL AUTOMAKE_VERSION)
-
-        # -- Run autogen.sh to cause Makefile.in files to be created.
-        file(COPY ${GNUCASH_SOURCE_DIR}/autogen.sh DESTINATION ${PACKAGE_PREFIX})
-        execute_process(
-                COMMAND ${SHELL} -c ./autogen.sh
-                WORKING_DIRECTORY ${PACKAGE_PREFIX}
-                RESULT_VARIABLE AUTOGEN_RESULT
-                OUTPUT_VARIABLE AUTOGEN_OUTPUT
-        )
-        if(NOT ${AUTOGEN_RESULT} STREQUAL "0")
-            message(FATAL_ERROR "autogen.sh step failed: ${AUTOGEN_RESULT}")
-        endif()
-
-        # -- Remove autogen files as they are not distributed.
-        file(REMOVE ${PACKAGE_PREFIX}/autogen.sh)
-        file(REMOVE_RECURSE ${PACKAGE_PREFIX}/autom4te.cache)
-
-        # -- Autogen.sh creates some files as symbolic links that we turn into real files here.
-        if(NOT WIN32) # No symbolic links on Windows
-            set(LINKS config.guess config.sub COPYING INSTALL install-sh ltmain.sh missing)
-            foreach(link ${LINKS})
-                get_filename_component(realpath ${PACKAGE_PREFIX}/${link} REALPATH)
-                file(REMOVE ${PACKAGE_PREFIX}/${link})
-                file(COPY ${realpath} DESTINATION ${PACKAGE_PREFIX})
-            endforeach(link)
-        endif()
-
-    endif()
-
-
     # -- Create the tarballs.
 
     execute_process_and_check_result(
diff --git a/cmake/MakeDistCheck.cmake b/cmake/MakeDistCheck.cmake
index 488cf806..8a2c621d 100644
--- a/cmake/MakeDistCheck.cmake
+++ b/cmake/MakeDistCheck.cmake
@@ -42,7 +42,6 @@ function(run_dist_check PACKAGE_PREFIX EXT)
     execute_process_and_check_result(
             COMMAND ${CMAKE_COMMAND} -G Ninja
               -D CMAKE_INSTALL_PREFIX=../${INSTALL_DIR}
-              -D AUTOTOOLS_IN_DIST=${AUTOTOOLS_IN_DIST}
               ../${PACKAGE_PREFIX}
             WORKING_DIRECTORY ${BUILD_DIR}
             ERROR_MSG "CMake configure command failed."
@@ -73,56 +72,5 @@ function(run_dist_check PACKAGE_PREFIX EXT)
 
 endfunction()
 
-function(run_autotools_dist_check PACKAGE_PREFIX)
-    # We assume that the RUN_DIST_CHECK() function has been run so that we can
-    # use the untarred distribution created by that step.
-    set(BUILD_DIR ${PACKAGE_PREFIX})
-    set(INSTALL_DIR "_cmake_install_autotools")
-    file(REMOVE_RECURSE ${BUILD_DIR}/${INSTALL_DIR})
-    file(MAKE_DIRECTORY ${BUILD_DIR}/${INSTALL_DIR})
-
-    message("Running autotools configure")
-    message("CMAKE_CURRENT_SOURCE_DIR: ${CMAKE_CURRENT_SOURCE_DIR}")
-    execute_process_and_check_result(
-        COMMAND ${CMAKE_COMMAND} -E env ./configure --prefix=${CMAKE_CURRENT_SOURCE_DIR}/${INSTALL_DIR}
-        WORKING_DIRECTORY ${BUILD_DIR}
-        ERROR_MSG "Autotools 'configure' step failed."
-    )
-
-    message("Running autotools make")
-    execute_process_and_check_result(
-        COMMAND ${CMAKE_COMMAND} -E env make -j 4
-        WORKING_DIRECTORY ${BUILD_DIR}
-        ERROR_MSG "Autotools 'make' step failed."
-    )
-
-    message("Running autotools make check")
-    execute_process_and_check_result(
-        COMMAND ${CMAKE_COMMAND} -E env make check
-        WORKING_DIRECTORY ${BUILD_DIR}
-        ERROR_MSG "Autotools 'make check' step failed."
-    )
-
-    message("Running autotools make install")
-    execute_process_and_check_result(
-        COMMAND ${CMAKE_COMMAND} -E env make install
-        WORKING_DIRECTORY ${BUILD_DIR}
-        ERROR_MSG "Autotools 'make install' step failed."
-    )
-
-    message("Running autotools make uninstall")
-    execute_process_and_check_result(
-        COMMAND ${CMAKE_COMMAND} -E env make uninstall
-        WORKING_DIRECTORY ${BUILD_DIR}
-        ERROR_MSG "Autotools 'make uninstall' step failed."
-    )
-
-    message("Autotools distcheck complete.")
-
-endfunction()
 
 run_dist_check(${PACKAGE_PREFIX} .gz)
-
-if(AUTOTOOLS_IN_DIST)
-  run_autotools_dist_check(${PACKAGE_PREFIX})
-endif()
diff --git a/configure.ac b/configure.ac
deleted file mode 100644
index 0d80b651..00000000
--- a/configure.ac
+++ /dev/null
@@ -1,217 +0,0 @@
-# copyright (c) 2000-2002 Chris Lyttle
-# copyright (c) 2003-2016 GnuCash Development Team
-
-dnl Process this file with autoconf to produce a configure script.
-AC_INIT([gnucash-docs], [4.6], [https://bugs.gnucash.org/describecomponents.cgi?product=Documentation], , [https://www.gnucash.org/])
-AC_CANONICAL_HOST
-
-dnl ==========================================================================
-dnl
-dnl If you add a version number here, you *must* add an AC_SUBST line for
-dnl it too, or it will never make it into the spec file!
-dnl
-dnl ==========================================================================
-
-SCROLLKEEPER_BUILD_REQUIRED=0.3.4
-AC_SUBST(SCROLLKEEPER_BUILD_REQUIRED)
-
-dnl ====================================
-dnl = Begin tests for scrollkeeper
-dnl ====================================
-SCROLLKEEPER_CONFIG=no
-AC_ARG_WITH([scrollkeeper],
-	[AC_HELP_STRING([--with-scrollkeeper],
-			[do not make updates to the scrollkeeper database (default=check)])],
-	[], [with_scrollkeeper=check])
-if test x$with_scrollkeeper != "xno"; then
-   AC_PATH_PROG(SCROLLKEEPER_CONFIG, scrollkeeper-config, no)
-   if (test "x$with_scrollkeeper" = "xyes") && (test x$SCROLLKEEPER_CONFIG = xno); then
-      AC_MSG_ERROR(Couldn't find scrollkeeper-config. Please install the scrollkeeper package: http://scrollkeeper.sourceforge.net or rarian: https://rarian.freedesktop.org and link the rarian executables to their scrollkeeper equivalents.)
-   fi
-fi
-AM_CONDITIONAL(ENABLE_SK, test "x$SCROLLKEEPER_CONFIG" = "xyes")
-
-dnl ====================================
-dnl = End tests for scrollkeeper
-dnl ====================================
-
-AM_INIT_AUTOMAKE()
-
-dnl
-dnl Check for xsltproc
-dnl Some distributions package it separately of libxslt
-dnl
-AC_PATH_PROG(XSLTPROC, xsltproc)
-if test -z "$XSLTPROC"; then
-  AC_MSG_ERROR([xsltproc not found, perhaps you should install the xsltproc or libxslt package ?])
-fi
-XSLTPROCFLAGS="--path \${top_srcdir}/docbook --xinclude $XSLTPROCFLAGS"
-AC_SUBST([XSLTPROCFLAGS])
-
-dnl Same for xmllint
-AC_PATH_PROG(XMLLINT, xmllint, [""])
-if test -z "$XMLLINT"; then
-  AC_MSG_ERROR([xmllint not found, perhaps you should install the xmllint or libxslt package ?])
-fi
-
-dnl
-dnl Check for optional fop
-dnl
-AC_PATH_PROG(FOP, fop)
-fop_version=0
-if test -z "$FOP"; then
-  AC_MSG_WARN([fop not found. You will not be able to generate PDF files.])
-else
-  fop_version=`$FOP -version | cut -f 3 -d ' ' | cut -c 1`
-fi
-
-dnl
-dnl Get the absolute path to $srcdir
-dnl
-ac_abs_top_srcdir=$(cd -- "$srcdir" && pwd)
-
-dnl
-dnl Set font dirs and font
-dnl
-EXTENDED_SANS=opentype/freefont/FreeSans
-EXTENDED_SERIF=opentype/freefont/FreeSerif
-EXTENDED_MONO=opentype/freefont/FreeMono
-extended_fontdir=$ac_abs_top_srcdir/fonts
-extended_extension=otf
-BASEDIR_RU=$ac_abs_top_srcdir/guide/ru
-AC_SUBST(EXTENDED_SANS)
-AC_SUBST(EXTENDED_SERIF)
-AC_SUBST(EXTENDED_MONO)
-AC_SUBST(extended_fontdir)
-AC_SUBST(extended_extension)
-AC_SUBST(BASEDIR_RU)
-
-dnl
-dnl Check Japanese TrueType fonts for PDF
-dnl
-AC_ARG_WITH([japanese-fontdir],
-	[AS_HELP_STRING([--with-japanese-fontdir=DIR],
-			[use DIR for Japanese TrueType font directory])],,
-			[with_japanese_fontdir=check])
-AC_ARG_WITH([japanese-mincho-ttf],
-	[AS_HELP_STRING([--with-japanese-mincho-ttf],
-			[specify Japanese Mincho TrueType font (default is ume-tmo3.ttf)])],,)
-AC_ARG_WITH([japanese-gothic-ttf],
-	[AS_HELP_STRING([--with-japanese-gothic-ttf],
-			[specify Japanese Gothic TrueType font (default is ume-tmo3.ttf)])],,)
-JAPANESE_MINCHO_TTF=ume-tmo3.ttf
-JAPANESE_GOTHIC_TTF=ume-tmo3.ttf
-japanese_fontdir=$ac_abs_top_srcdir/fonts/truetype
-JAPANESE_MINCHO_TTF_ABS=$japanese_fontdir/$JAPANESE_MINCHO_TTF
-JAPANESE_GOTHIC_TTF_ABS=$japanese_fontdir/$JAPANESE_GOTHIC_TTF
-BASEDIR_JA=$ac_abs_top_srcdir/guide/ja
-
-dnl Japanese fonts search path (Ubuntu, RedHat, openSUSE:local, Fedora)
-japanese_fontdirs="/usr/share/fonts /usr/local/share/fonts /usr/local/share/fonts"
-
-if test "x$with_japanese_fontdir" != "xcheck" && test "x$with_japanese_fontdir" != "xyes" ; then
-japanese_fontdirs="$with_japanese_fontdir $japanese_fontdir"
-fi
-
-if test "x$with_japanese_mincho_ttf" != "x" ; then
-AC_CHECK_FILE($with_japanese_mincho_ttf,
-[JAPANESE_MINCHO_TTF=$with_japanase_mincho_ttf
-JAPANESE_MINCHO_TTF_ABS=$font
-font = $with_japanese_mincho_ttf],
-[for fontdir in $japanese_fontdirs ""; do
-font=$fontdir/$with_japanese_mincho_ttf
-AC_CHECK_FILE($font,
-[JAPANESE_MINCHO_TTF=$font
-JAPANESE_MINCHO_TTF_ABS=$font
-japanese_fontdir=$fontdir
-break],)
-done])
-if test -z $font; then
-AC_MSG_WARN([$with_japanese_mincho_ttf not found, using default mincho font])
-fi
-unset font
-fi
-if test "x$with_japanese_gothic_ttf" != "x" ; then
-AC_CHECK_FILE($with_japanese_gothic_ttf,
-[JAPANESE_GOTHIC_TTF=$with_japanase_gothic_ttf
-JAPANESE_GOTHIC_TTF_ABS=$font
-font = $with_japanese_gothic_ttf],
-[for fontdir in $japanese_fontdirs ""; do
-font=$fontdir/$with_japanese_gothic_ttf
-AC_CHECK_FILE($font,
-[JAPANESE_GOTHIC_TTF=$font
-JAPANESE_GOTHIC_TTF_ABS=$font
-japanese_fontdir=$fontdir
-break],)
-done])
-if test -z $font; then
-AC_MSG_WARN([$with_japanese_gothic_ttf not found, using default gothic font])
-fi
-unset font
-fi
-AC_SUBST(japanese_fontdir)
-AC_SUBST(JAPANESE_MINCHO_TTF)
-AC_SUBST(JAPANESE_MINCHO_TTF_ABS)
-AC_SUBST(JAPANESE_GOTHIC_TTF)
-AC_SUBST(JAPANESE_GOTHIC_TTF_ABS)
-AC_SUBST(BASEDIR_JA)
-
-dnl
-dnl Check for mobi target and optional ebook-convert
-dnl
-AC_ARG_WITH([mobi],
-	[AC_HELP_STRING([--with-mobi],
-			[do make Mobipocket target])],,
-	with_mobi=no)
-AM_CONDITIONAL([WITH_MOBI], [test "x$with_mobi" = "xyes"])
-if test "x$with_mobi" = "xyes"; then
-  AC_PATH_PROG(EBOOK_CONVERT, ebook-convert, no)
-  if test "x$EBOOK_CONVERT" = "xno"; then
-    AC_MSG_ERROR([Couldn't find ebook-convert. Please install the Calibre package: https://www.calibre-ebook.com/])
-  fi
-else
-  AC_MSG_NOTICE([Didn't make mobi target.  If you need, specify --with-mobi])
-fi
-if test -z $LANG; then LANG="C"; fi
-case $LANG in
-     *_US*|C)
-        lang_us=true ;;
-     *)
-        lang_us=false ;;
-esac
-
-ac_cv_gnc_windows="no"
-case $host_os in
-  mingw*)
-  ac_cv_gnc_windows="yes"
-  AC_PATH_PROG([HHC], hhc.exe, [hhc_not_found], [/c/Program Files (x86)/Html Help Workshop:/c/Program Files/Html Help Workshop])
-  if test ! -x "${HHC}"; then
-     AC_MSG_ERROR([Html Help Workshop Not Found])
-  fi
-  AM_EXTRA_RECURSIVE_TARGETS([chm install-chm])
-  ;;
-  *)
-  ;;
-esac
-AM_CONDITIONAL([GNC_WINDOWS], [test x${ac_cv_gnc_windows} = "xyes"])
-AM_CONDITIONAL([LANG_US], [test x${lang_us} = "xtrue"])
-AC_CONFIG_FILES([
-gnucash-docs.spec
-help/Makefile
-help/C/Makefile
-help/de/Makefile
-help/it/Makefile
-help/pt/Makefile
-guide/Makefile
-guide/C/Makefile
-guide/de/Makefile
-guide/it/Makefile
-guide/ja/Makefile
-guide/pt/Makefile
-guide/ru/Makefile
-Makefile])
-
-AC_CONFIG_FILES([guide/ja/fop.xconf])
-AC_CONFIG_FILES([guide/ru/fop.xconf])
-
-AC_OUTPUT
diff --git a/epub.make b/epub.make
deleted file mode 100644
index aec5aea9..00000000
--- a/epub.make
+++ /dev/null
@@ -1,32 +0,0 @@
-# 2011-07-10, SASAKI Suguru: EPUB creation.
-
-epubfile = $(docname).epub
-
-$(epubfile): $(entities) $(figfiles)
-
-epub: $(epubfile)
-
-epub-am:
-
-.xml.epub:
-	EPUB_TMPDIR=`mktemp -d .epubtmpXXXXXXXX`; \
-	posthook='exit 1'; \
-	( echo "application/epub+zip" > mimetype && \
-	$(XSLTPROC) $(XSLTPROCFLAGS) \
-	            -o $$EPUB_TMPDIR/ \
-	            --stringparam base.dir OEBPS/ \
-	            --stringparam epub.metainf.dir META-INF/ \
-	            --stringparam epub.oebps.dir OEBPS/ \
-	            $(abs_top_srcdir)/xsl/1.79.2/epub/docbook.xsl \
-	            $(abs_srcdir)/$(docname).xml && \
-	cd "$$EPUB_TMPDIR" && \
-	cp -L -R $(abs_srcdir)/figures OEBPS/ && \
-	zip -X -r ../$(epubfile) mimetype META-INF OEBPS && \
-	cd ..) && posthook=''; \
-	if test -d "$$EPUB_TMPDIR"; then \
-	  rm -v -fr "$$EPUB_TMPDIR"; \
-	fi; \
-	eval "$$posthook";
-
-CLEANFILES += $(epubfile)
-
diff --git a/guide/C/Makefile.am b/guide/C/Makefile.am
deleted file mode 100644
index fae5bf69..00000000
--- a/guide/C/Makefile.am
+++ /dev/null
@@ -1,48 +0,0 @@
-if LANG_US
-XSLTFLAGS_FO = --stringparam paper.type letter
-else
-XSLTFLAGS_FO = --stringparam paper.type A4
-endif
-
-figdir = figures
-docname = gnucash-guide
-lang = C
-omffile = $(docname)-C.omf
-entities = \
-	fdl-appendix.xml \
-	legal.xml \
-	ch_oview.xml \
-	ch_basics.xml \
-	ch_accts.xml \
-	ch_txns.xml \
-	ch_importing.xml \
-	ch_configuring.xml \
-	ch_cbook.xml \
-	ch_cc.xml \
-	ch_expenses.xml \
-	ch_loans.xml \
-	ch_invest.xml \
-	ch_reports.xml \
-	ch_capgain.xml \
-	ch_currency.xml \
-	ch_dep.xml \
-	ch_bus_features.xml \
-	ch_budgets.xml \
-	ch_oth_assets.xml \
-	ch_python_bindings.xml \
-	ch_import_business_data.xml \
-	gnc-glossary.xml \
-	appendixa.xml \
-	appendixd.xml
-DISTCLEANFILES =  $(docname)-C.omf.out
-CLEANFILES =  $(DISTCLEANFILES)
-if GNC_WINDOWS
-include $(top_srcdir)/chm.make
-else
-include $(top_srcdir)/xmldocs.make
-include $(top_srcdir)/pdf.make
-include $(top_srcdir)/epub.make
-if WITH_MOBI
-include $(top_srcdir)/mobi.make
-endif
-endif
diff --git a/guide/CMakeLists.txt b/guide/CMakeLists.txt
index 8049a946..548a36f4 100644
--- a/guide/CMakeLists.txt
+++ b/guide/CMakeLists.txt
@@ -39,7 +39,4 @@ add_subdirectory(it)
 add_subdirectory(ja)
 add_subdirectory(pt)
 
-if(AUTOTOOLS_IN_DIST)
-    set(autotoolsfiles Makefile.am)
-endif()
-add_to_dist(CMakeLists.txt ${autotoolsfiles})
+add_to_dist(CMakeLists.txt)
diff --git a/guide/Makefile.am b/guide/Makefile.am
deleted file mode 100644
index 2ee94ce8..00000000
--- a/guide/Makefile.am
+++ /dev/null
@@ -1,34 +0,0 @@
-SUBDIRS = C de it ja pt ru
-
-gnomehelpdir = $(datadir)/gnome/help/gnucash-guide
-
-if WITH_MOBI
-  MOBI = mobi
-endif
-
-epub $(MOBI):
-	@fail= failcom='exit 1'; \
-	for f in x $$MAKEFLAGS; do \
-	  case $$f in \
-	    *=* | --[!k]*);; \
-	    *k*) failcom='fail=yes';; \
-	  esac; \
-	done; \
-	dot_seen=no; \
-	target=`echo $@ | sed s/-recursive//`; \
-	list='$(SUBDIRS)'; for subdir in $$list; do \
-	  echo "Making $$target in $$subdir"; \
-	  if test "$$subdir" = "."; then \
-	    dot_seen=yes; \
-	    local_target="$$target-am"; \
-	  else \
-	    local_target="$$target"; \
-	  fi; \
-	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
-	  || eval $$failcom; \
-	done; test -z "$$fail"
-
-uninstall-hook:
-	rmdir --ignore-fail-on-non-empty "$(DESTDIR)$(gnomehelpdir)"
-
-EXTRA_DIST = CMakeLists.txt
diff --git a/guide/de/Makefile.am b/guide/de/Makefile.am
deleted file mode 100644
index 7c59f7bb..00000000
--- a/guide/de/Makefile.am
+++ /dev/null
@@ -1,45 +0,0 @@
-figdir = figures
-docname = gnucash-guide
-lang = de
-omffile = $(docname)-de.omf
-entities = \
- ch_accts.xml \
- ch_basics.xml \
- ch_budgets.xml \
- ch_bus_ap.xml \
- ch_bus_ar.xml \
- ch_bus_intro.xml \
- ch_bus_pay.xml \
- ch_bus_setup.xml \
- ch_capgain.xml \
- ch_cbook.xml \
- ch_cc.xml \
- ch_currency.xml \
- ch_dep.xml \
- ch_expenses.xml \
- ch_import_business_data.xml \
- ch_loans.xml \
- ch_invest.xml \
- ch_oth_assets.xml \
- ch_oview.xml \
- ch_python_bindings.xml \
- ch_reports.xml \
- ch_txns.xml \
- appendixa.xml \
- appendixd.xml \
- appendixe.xml \
- fdl-appendix.xml \
- glossary.xml
-DISTCLEANFILES =  $(docname)-de.omf.out
-CLEANFILES =  $(DISTCLEANFILES)
-XSLTFLAGS_FO= --stringparam paper.type A4
-if GNC_WINDOWS
-include $(top_srcdir)/chm.make
-else
-include $(top_srcdir)/xmldocs.make
-include $(top_srcdir)/pdf.make
-include $(top_srcdir)/epub.make
-if WITH_MOBI
-include $(top_srcdir)/mobi.make
-endif
-endif
diff --git a/guide/it/Makefile.am b/guide/it/Makefile.am
deleted file mode 100644
index f66e77bb..00000000
--- a/guide/it/Makefile.am
+++ /dev/null
@@ -1,49 +0,0 @@
-figdir = figures
-docname = gnucash-guide
-lang = it
-omffile = $(docname)-it.omf
-DISTCLEANFILES =  $(docname)-it.omf.out
-CLEANFILES =  $(DISTCLEANFILES)
-XSLTFLAGS_FO= --stringparam paper.type A4
-if GNC_WINDOWS
-include $(top_srcdir)/chm.make
-else
-include $(top_srcdir)/xmldocs.make
-include $(top_srcdir)/pdf.make
-include $(top_srcdir)/epub.make
-if WITH_MOBI
-include $(top_srcdir)/mobi.make
-endif
-endif
-
-COMPONENTS = \
-	${top_srcdir}/guide/C/gnucash-guide.xml \
-	${top_srcdir}/guide/C/fdl-appendix.xml \
-	${top_srcdir}/guide/C/legal.xml \
-	${top_srcdir}/guide/C/ch_oview.xml \
-	${top_srcdir}/guide/C/ch_basics.xml \
-	${top_srcdir}/guide/C/ch_accts.xml \
-	${top_srcdir}/guide/C/ch_txns.xml \
-	${top_srcdir}/guide/C/ch_cbook.xml \
-	${top_srcdir}/guide/C/ch_cc.xml \
-	${top_srcdir}/guide/C/ch_expenses.xml \
-	${top_srcdir}/guide/C/ch_loans.xml \
-	${top_srcdir}/guide/C/ch_invest.xml \
-	${top_srcdir}/guide/C/ch_reports.xml \
-	${top_srcdir}/guide/C/ch_capgain.xml \
-	${top_srcdir}/guide/C/ch_currency.xml \
-	${top_srcdir}/guide/C/ch_dep.xml \
-	${top_srcdir}/guide/C/ch_bus_features.xml \
-	${top_srcdir}/guide/C/ch_budgets.xml \
-	${top_srcdir}/guide/C/ch_oth_assets.xml \
-	${top_srcdir}/guide/C/ch_python_bindings.xml \
-	${top_srcdir}/guide/C/ch_import_business_data.xml \
-	${top_srcdir}/guide/C/gnc-glossary.xml \
-	${top_srcdir}/guide/C/appendixa.xml \
-	${top_srcdir}/guide/C/appendixd.xml
-
-#gnucash-guide.xml: ${COMPONENTS} ${srcdir}/it.po
-#	xml2po -e -p ${srcdir}/it.po -o $@ ${top_srcdir}/guide/C/gnucash-guide.xml
-#	if test "${srcdir}" != "${builddir}"; then mv $@ ${srcdir}; fi
-
-EXTRA_DIST += it.po COME-TRADURRE
diff --git a/guide/ja/Makefile.am b/guide/ja/Makefile.am
deleted file mode 100644
index a0367bdd..00000000
--- a/guide/ja/Makefile.am
+++ /dev/null
@@ -1,41 +0,0 @@
-figdir = figures
-docname = gnucash-guide
-lang = ja
-fopconfig = fop.xconf
-omffile = $(docname)-ja.omf
-entities = \
-	fdl-appendix.xml \
-	legal.xml \
-	ch_oview.xml \
-	ch_basics.xml \
-	ch_accts.xml \
-	ch_txns.xml \
-	ch_cbook.xml \
-	ch_cc.xml \
-	ch_loans.xml \
-	ch_invest.xml \
-	ch_capgain.xml \
-	ch_currency.xml \
-	ch_dep.xml \
-	ch_bus_ar.xml \
-	ch_bus_ap.xml \
-	ch_bus_pay.xml \
-	ch_budgets.xml \
-	ch_oth_assets.xml \
-	ch_python_bindings.xml \
-	appendixa.xml \
-	appendixd.xml
-DISTCLEANFILES =  $(docname)-ja.omf.out mincho.xml gothic.xml $(fopconfig)
-CLEANFILES =  $(DISTCLEANFILES)
-FOPFLAGS = -l $(lang) -c $(fopconfig)
-XSLTFLAGS_FO= --stringparam paper.type A4
-if GNC_WINDOWS
-include $(top_srcdir)/chm.make
-else
-include $(top_srcdir)/xmldocs.make
-include $(top_srcdir)/pdf.make
-include $(top_srcdir)/epub.make
-if WITH_MOBI
-include $(top_srcdir)/mobi.make
-endif
-endif
diff --git a/guide/pt/Makefile.am b/guide/pt/Makefile.am
deleted file mode 100644
index a23ffe43..00000000
--- a/guide/pt/Makefile.am
+++ /dev/null
@@ -1,47 +0,0 @@
-if LANG_US
-XSLTFLAGS_FO = --stringparam paper.type letter
-else
-XSLTFLAGS_FO = --stringparam paper.type A4
-endif
-
-figdir = figures
-docname = gnucash-guide
-lang = pt
-omffile = $(docname)-pt.omf
-entities = \
-	fdl-appendix.xml \
-	legal.xml \
-	ch_oview.xml \
-	ch_basics.xml \
-	ch_accts.xml \
-	ch_txns.xml \
-	ch_cbook.xml \
-	ch_cc.xml \
-	ch_loans.xml \
-	ch_invest.xml \
-	ch_capgain.xml \
-	ch_currency.xml \
-	ch_dep.xml \
-	ch_bus_intro.xml \
-	ch_bus_setup.xml \
-	ch_bus_ar.xml \
-	ch_bus_ap.xml \
-	ch_bus_pay.xml \
-	ch_budgets.xml \
-	ch_oth_assets.xml \
-	ch_python_bindings.xml \
-	ch_import_business_data.xml \
-	appendixa.xml \
-	appendixd.xml
-DISTCLEANFILES =  $(docname)-C.omf.out
-CLEANFILES =  $(DISTCLEANFILES)
-if GNC_WINDOWS
-include $(top_srcdir)/chm.make
-else
-include $(top_srcdir)/xmldocs.make
-include $(top_srcdir)/pdf.make
-include $(top_srcdir)/epub.make
-if WITH_MOBI
-include $(top_srcdir)/mobi.make
-endif
-endif
diff --git a/guide/ru/Makefile.am b/guide/ru/Makefile.am
deleted file mode 100644
index b8e98df3..00000000
--- a/guide/ru/Makefile.am
+++ /dev/null
@@ -1,43 +0,0 @@
-figdir = figures
-docname = gnucash-guide
-lang = ru
-fopconfig = fop.xconf
-omffile = $(docname)-ru.omf
-entities = \
-    ch_oview.xml \
-    ch_basics.xml \
-    ch_accts.xml \
-    ch_txns.xml \
-    ch_cbook.xml \
-    ch_cc.xml \
-    ch_expenses.xml \
-    ch_loans.xml \
-    ch_invest.xml \
-    ch_reports.xml \
-    ch_capgain.xml \
-    ch_currency.xml \
-    ch_dep.xml \
-    ch_bus_features.xml \
-    ch_budgets.xml \
-    ch_oth_assets.xml \
-    ch_python_bindings.xml \
-    ch_import_business_data.xml \
-    gnc-glossary.xml \
-    fdl-appendix.xml \
-    legal.xml \
-    appendixa.xml \
-    appendixd.xml
-DISTCLEANFILES = $(docname)-ru.omf.out
-CLEANFILES = $(DISTCLEANFILES)
-FOPFLAGS = -l $(lang) -c $(fopconfig)
-XSLTFLAGS_FO = --stringparam paper.type A4
-if GNC_WINDOWS
-include $(top_srcdir)/chm.make
-else
-include $(top_srcdir)/xmldocs.make
-include $(top_srcdir)/pdf.make
-include $(top_srcdir)/epub.make
-if WITH_MOBI
-include $(top_srcdir)/mobi.make
-endif
-endif
diff --git a/help/C/Makefile.am b/help/C/Makefile.am
deleted file mode 100644
index d6718f7f..00000000
--- a/help/C/Makefile.am
+++ /dev/null
@@ -1,39 +0,0 @@
-if LANG_US
-XSLTFLAGS_FO = --stringparam paper.type letter
-else
-XSLTFLAGS_FO = --stringparam paper.type A4
-endif
-
-figdir = figures
-docname = gnucash-help
-lang = C
-omffile = $(docname)-C.omf
-entities = \
-	Help_ch_Intro.xml \
-        Help_ch_GettingHelp.xml \
-	Help_ch_GettingStarted.xml \
-	Help_ch_GUIMenus.xml \
-	Help_ch_Account-Actions.xml \
-	Help_ch_Transactions.xml \
-	Help_ch_Business.xml\
-	Help_ch_Tools_Assistants.xml \
-	Help_ch_Reports.xml \
-	Help_ch_Customize.xml \
-	Help_chtacctseg.xml \
-	Help_chartofaccts.xml \
-	Help_legal.xml \
-	Help_txf-categories.xml \
-	Help_fdl-appendix.xml \
-        Help_tips-appendix.xml
-DISTCLEANFILES =  $(docname)-C.omf.out
-CLEANFILES =  $(DISTCLEANFILES)
-if GNC_WINDOWS
-include $(top_srcdir)/chm.make
-else
-include $(top_srcdir)/xmldocs.make
-include $(top_srcdir)/pdf.make
-include $(top_srcdir)/epub.make
-if WITH_MOBI
-include $(top_srcdir)/mobi.make
-endif
-endif
diff --git a/help/CMakeLists.txt b/help/CMakeLists.txt
index ad7c7c71..74f4d8dd 100644
--- a/help/CMakeLists.txt
+++ b/help/CMakeLists.txt
@@ -38,7 +38,4 @@ add_subdirectory(de)
 add_subdirectory(it)
 add_subdirectory(pt)
 
-if(AUTOTOOLS_IN_DIST)
-    set(autotoolsfiles Makefile.am)
-endif()
-add_to_dist(CMakeLists.txt ${autotoolsfiles})
+add_to_dist(CMakeLists.txt)
diff --git a/help/Makefile.am b/help/Makefile.am
deleted file mode 100644
index 5e98435e..00000000
--- a/help/Makefile.am
+++ /dev/null
@@ -1,34 +0,0 @@
-SUBDIRS = C de it pt
-
-gnomehelpdir = $(datadir)/gnome/help/gnucash-help
-
-if WITH_MOBI
-  MOBI = mobi
-endif
-
-epub $(MOBI):
-	@fail= failcom='exit 1'; \
-	for f in x $$MAKEFLAGS; do \
-	  case $$f in \
-	    *=* | --[!k]*);; \
-	    *k*) failcom='fail=yes';; \
-	  esac; \
-	done; \
-	dot_seen=no; \
-	target=`echo $@ | sed s/-recursive//`; \
-	list='$(SUBDIRS)'; for subdir in $$list; do \
-	  echo "Making $$target in $$subdir"; \
-	  if test "$$subdir" = "."; then \
-	    dot_seen=yes; \
-	    local_target="$$target-am"; \
-	  else \
-	    local_target="$$target"; \
-	  fi; \
-	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
-	  || eval $$failcom; \
-	done; test -z "$$fail"
-
-uninstall-hook:
-	rmdir --ignore-fail-on-non-empty "$(DESTDIR)$(gnomehelpdir)"
-
-EXTRA_DIST = CMakeLists.txt
diff --git a/help/de/Makefile.am b/help/de/Makefile.am
deleted file mode 100644
index ccb0dfc3..00000000
--- a/help/de/Makefile.am
+++ /dev/null
@@ -1,36 +0,0 @@
-figdir = figures
-docname = gnucash-help
-lang = de
-omffile = $(docname)-de.omf
-entities = \
-	Help_ch_Intro.xml \
-	Help_ch_GettingHelp.xml \
-	Help_ch_GettingStarted.xml \
-	Help_ch_GUIMenus.xml \
-	Help_ch_Account-Actions.xml \
-	Help_ch_Transactions.xml \
-	Help_ch_Business.xml\
-	Help_ch_Tools_Assistants.xml \
-	Help_ch_Reports.xml \
-	Help_ch_Customize.xml \
-	Help_fdl-appendix.xml \
-	Help_legal.xml \
-    para-assist-buttons.xml \
-	Help_chartofaccts.xml \
-	Help_chtacctseg.xml \
-	Help_para-assist-intro.xml \
-	Help_txf-categories.xml \
-	Help_tips-appendix.xml
-DISTCLEANFILES =  $(docname)-de.omf.out
-CLEANFILES =  $(DISTCLEANFILES)
-XSLTFLAGS_FO= --stringparam paper.type A4
-if GNC_WINDOWS
-include $(top_srcdir)/chm.make
-else
-include $(top_srcdir)/xmldocs.make
-include $(top_srcdir)/pdf.make
-include $(top_srcdir)/epub.make
-if WITH_MOBI
-include $(top_srcdir)/mobi.make
-endif
-endif
diff --git a/help/it/Makefile.am b/help/it/Makefile.am
deleted file mode 100644
index 53ea3f39..00000000
--- a/help/it/Makefile.am
+++ /dev/null
@@ -1,42 +0,0 @@
-figdir = figures
-docname = gnucash-help
-lang = it
-omffile = $(docname)-it.omf
-DISTCLEANFILES =  $(docname)-it.omf.out
-CLEANFILES =  $(DISTCLEANFILES)
-XSLTFLAGS_FO= --stringparam paper.type A4
-if GNC_WINDOWS
-include $(top_srcdir)/chm.make
-else
-include $(top_srcdir)/xmldocs.make
-include $(top_srcdir)/pdf.make
-include $(top_srcdir)/epub.make
-if WITH_MOBI
-include $(top_srcdir)/mobi.make
-endif
-endif
-
-COMPONENTS = \
-	${top_srcdir}/help/C/gnucash-help.xml \
-	${top_srcdir}/help/C/Help_ch_Intro.xml \
-        ${top_srcdir}/help/C/Help_ch_GettingHelp.xml \
-	${top_srcdir}/help/C/Help_ch_GettingStarted.xml \
-	${top_srcdir}/help/C/Help_ch_GUIMenus.xml \
-	${top_srcdir}/help/C/Help_ch_Account-Actions.xml \
-	${top_srcdir}/help/C/Help_ch_Transactions.xml \
-	${top_srcdir}/help/C/Help_ch_Business.xml\
-	${top_srcdir}/help/C/Help_ch_Tools_Assistants.xml \
-	${top_srcdir}/help/C/Help_ch_Reports.xml \
-	${top_srcdir}/help/C/Help_ch_Customize.xml \
-	${top_srcdir}/help/C/Help_chtacctseg.xml \
-	${top_srcdir}/help/C/Help_chartofaccts.xml \
-	${top_srcdir}/help/C/Help_legal.xml \
-	${top_srcdir}/help/C/Help_txf-categories.xml \
-	${top_srcdir}/help/C/Help_fdl-appendix.xml \
-        ${top_srcdir}/help/C/Help_tips-appendix.xml
-
-#gnucash-help.xml: ${COMPONENTS} ${srcdir}/it.po
-#	xml2po -e -p ${srcdir}/it.po -o $@ ${top_srcdir}/help/C/gnucash-help.xml
-#	if test "${srcdir}" != "${builddir}"; then mv $@ ${srcdir}; fi
-
-EXTRA_DIST += it.po COME-TRADURRE
diff --git a/help/pt/Makefile.am b/help/pt/Makefile.am
deleted file mode 100644
index 32275ed4..00000000
--- a/help/pt/Makefile.am
+++ /dev/null
@@ -1,37 +0,0 @@
-figdir = figures
-docname = gnucash-help
-lang = pt
-omffile = $(docname)-pt.omf
-entities = \
-	Help_ch_Intro.xml \
-        Help_ch_GettingHelp.xml \
-	Help_ch_GettingStarted.xml \
-	Help_ch_GUIMenus.xml \
-	Help_ch_Account-Actions.xml \
-	Help_ch_Transactions.xml \
-	Help_ch_Business.xml\
-	Help_ch_Tools_Assistants.xml \
-	Help_ch_Reports.xml \
-	Help_ch_Customize.xml \
-	Help_chtacctseg.xml \
-	Help_chartofaccts.xml \
-	Help_legal.xml \
-	Help_txf-categories.xml \
-	Help_fdl-appendix.xml \
-        Help_tips-appendix.xml
-DISTCLEANFILES =  $(docname)-pt.omf.out
-CLEANFILES =  $(DISTCLEANFILES)
-XSLTFLAGS_FO= --stringparam paper.type A4
-if GNC_WINDOWS
-include $(top_srcdir)/chm.make
-else
-include $(top_srcdir)/xmldocs.make
-include $(top_srcdir)/pdf.make
-include $(top_srcdir)/epub.make
-if WITH_MOBI
-include $(top_srcdir)/mobi.make
-endif
-endif
-
-pt_icons = $(shell ls ${srcdir}/${figdir}/icons/*.png)
-EXTRA_DIST += ${pt_icons}
diff --git a/mobi.make b/mobi.make
deleted file mode 100644
index eda858ea..00000000
--- a/mobi.make
+++ /dev/null
@@ -1,15 +0,0 @@
-# 2011-07-17, SASAKI Suguru: Mobipocket generation.
-
-mobifile = $(docname).mobi
-
-$(mobifile): $(entities) $(figfiles)
-
-mobi: $(mobifile)
-
-mobi-am:
-
-.epub.mobi:
-	$(EBOOK_CONVERT) $(epubfile) $(mobifile)
-
-CLEANFILES += $(mobifile)
-
diff --git a/omf.make b/omf.make
deleted file mode 100644
index 9844a497..00000000
--- a/omf.make
+++ /dev/null
@@ -1,61 +0,0 @@
-# 
-# No modifications of this Makefile should be necessary.
-#
-# This file contains the build instructions for installing OMF files.  It is
-# generally called from the makefiles for particular formats of documentation.
-#
-# Note that you must configure your package with --localstatedir=/var/lib
-# so that the scrollkeeper-update command below will update the database
-# in the standard scrollkeeper directory.
-#
-# If it is impossible to configure with --localstatedir=/var/lib, then
-# modify the definition of scrollkeeper_localstate_dir so that
-# it points to the correct location. Note that you must still use 
-# $(localstatedir) in this or when people build RPMs it will update
-# the real database on their system instead of the one under RPM_BUILD_ROOT.
-#
-# Note: This make file is not incorporated into xmldocs.make because, in
-#       general, there will be other documents install besides XML documents
-#       and the makefiles for these formats should also include this file.
-#
-# About this file:
-#	This file was taken from scrollkeeper_example2, a package illustrating
-#	how to install documentation and OMF files for use with ScrollKeeper
-#	0.3.x and 0.4.x.  For more information, see:
-#		http://scrollkeeper.sourceforge.net/	
-# 	Version: 0.1.2 (last updated: March 20, 2002)
-#
-
-omf_dest_dir=$(datadir)/omf
-scrollkeeper_localstate_dir = $(localstatedir)/scrollkeeper
-
-omf: omf_timestamp
-
-omf_timestamp: $(omffile)
-	-for file in $(omffile); do \
-	    scrollkeeper-preinstall $(docdir)/$(docname).xml $(srcdir)/$$file $$file.out; \
-	done
-	touch omf_timestamp
-
-install-data-hook-omf:
-	$(mkinstalldirs) "$(DESTDIR)$(omf_dest_dir)"
-	for file in $(omffile); do \
-	    omfdir="$(DESTDIR)$(omf_dest_dir)/`echo $$file | sed 's/-[^-]*\.omf$$//'`"; \
-	    $(mkinstalldirs) "$$omfdir"; \
-	    $(INSTALL_DATA) "$$file.out" "$$omfdir/$$file"; \
-	    if test "x$(_ENABLE_SK)" = "xtrue"; then \
-	        scrollkeeper-update -p "$(scrollkeeper_localstate_dir)" -o "$$omfdir"; \
-	    fi; \
-	done;
-
-uninstall-local-omf:
-	for file in $(omffile); do \
-	    omfdir="$(DESTDIR)$(omf_dest_dir)/`echo $$file | sed 's/-[^-]*\.omf$$//'`"; \
-	    if test "x$(_ENABLE_SK)" == "xtrue"; then \
-	        scrollkeeper-uninstall -p "$(scrollkeeper_localstate_dir)" "$$omfdir/$$file"; \
-	    fi; \
-	    rm -f "$$omfdir/$$file"; \
-	    rmdir --ignore-fail-on-non-empty "$$omfdir"; \
-	done
-	rmdir --ignore-fail-on-non-empty "$(DESTDIR)$(omf_dest_dir)"
-
diff --git a/pdf.make b/pdf.make
deleted file mode 100644
index 50b1dc7d..00000000
--- a/pdf.make
+++ /dev/null
@@ -1,27 +0,0 @@
-# 2008-10-02, Tom Browder: PDF creation.
-# 2010-11-19, Geert Janssens: Make the pdf create more universally usable.
-#
-# See README and HACKING.
-
-fofile  = $(docname).fo
-pdffile = $(docname).pdf
-
-$(pdffile): $(figfiles)
-
-pdf: $(abs_builddir)/figures $(pdffile)
-
-# This is only needed for out of tree builds. If you build
-# from within the source directory, the build system
-# will ignore this (mentioning a circular dependency)
-$(abs_builddir)/figures: $(abs_srcdir)/figures
-	ln -s '$<' '$@'
-
-$(fofile): $(entities)
-
-.xml.fo:
-	$(XSLTPROC) $(XSLTPROCFLAGS) $(XSLTFLAGS_FO) -o '$@' --stringparam fop1.extensions 1 $(top_srcdir)/xsl/1.79.2/fo/docbook.xsl '$<'
-
-.fo.pdf:
-	$(FOP) $(FOPFLAGS) -fo '$<' -pdf '$@'
-
-CLEANFILES += $(pdffile) $(fofile)
diff --git a/xmldocs.make b/xmldocs.make
deleted file mode 100644
index 64df52d2..00000000
--- a/xmldocs.make
+++ /dev/null
@@ -1,155 +0,0 @@
-#
-# No modifications of this Makefile should be necessary.
-#
-# To use this template:
-#     1) Define: figdir, docname, lang, omffile, and entities in
-#        your Makefile.am file for each document directory,
-#        although figdir, omffile, and entities may be empty
-#     2) Make sure the Makefile in (1) also includes 
-#	 "include $(top_srcdir)/xmldocs.make"
-#     3) Optionally define 'entities' to hold xml entities which
-#        you would also like installed
-#     4) Figures must go under $(figdir)/ and be in PNG format
-#     5) You should only have one document per directory 
-#     6) Note that the figure directory, $(figdir)/, should not have its
-#        own Makefile since this Makefile installs those figures.
-#
-# example Makefile.am:
-#   figdir = figures
-#   docname = scrollkeeper-manual
-#   lang = C
-#   omffile=scrollkeeper-manual-C.omf
-#   entities = fdl.xml
-#   include $(top_srcdir)/xmldocs.make
-#
-# About this file:
-#	This file was taken from scrollkeeper_example2, a package illustrating
-#	how to install documentation and OMF files for use with ScrollKeeper 
-#	0.3.x and 0.4.x.  For more information, see:
-#		http://scrollkeeper.sourceforge.net/
-#	Version: 0.1.2 (last updated: March 20, 2002)
-#
-# This file is changed from the original to generate html files for GnuCash,
-# install them in a subdir with the docname and copy the stylesheet png's in.
-# Dec 2002 Chris Lyttle
-# Oct 2012 Geert Janssens - Simplified xml doc installation and distribution
-
-
-# ************* Begin of section some packagers may need to modify  **************
-# These variables (gnomehelpdir and otherdocdir) specify where the documents
-# should be installed. The default values should work for most packages.
-# Gnome Help expects all documents here (this is where the xml files should go):
-gnomehelpdir = $(datadir)/gnome/help/$(docname)/$(lang)
-# Our other document versions go here:
-otherdocdir = $(docdir)/$(lang)
-
-
-# **************  You should not have to edit below this line  *******************
-
-# ************** Rules to install xml files for gnome-help ***********************
-
-xml_files = $(entities) $(docname).xml $(top_srcdir)/docbook/*.dtd
-gnomehelp_DATA =  $(xml_files)
-gnomehelpfiguresdir = $(gnomehelpdir)/$(figdir)
-gnomehelpfigures_DATA = $(shell ls ${srcdir}/${figdir}/*.png)
-gnomehelpfigures_DATA += $(shell find ${srcdir}/${figdir} -name *.svg)
-
-uninstall-hook:
-	rmdir --ignore-fail-on-non-empty "$(DESTDIR)$(gnomehelpfiguresdir)"
-	rmdir --ignore-fail-on-non-empty "$(DESTDIR)$(gnomehelpdir)"
-
-EXTRA_DIST = $(xml_files) $(omffile) $(gnomehelpfigures_DATA) CMakeLists.txt
-
-# ************** Rules to make and install omf file ******************************
-# If the following file is in a subdir (like help/) you need to add that to the path
-include $(top_srcdir)/omf.make
-if ENABLE_SK
-OMF = omf
-OMF_DATA_HOOK = install-data-hook-omf
-UNINSTALL_OMF = uninstall-local-omf
-else
-OMF=
-OMF_DATA_HOOK=
-UNINSTALL_OMF=
-endif
-
-CLEANFILES += omf_timestamp
-
-install-data-hook: ${OMF_DATA_HOOK}
-uninstall-local: ${UNINSTALL_OMF}
-
-all: ${OMF}
-
-# ************** Rules to make and install html documentation ********************
-styledir = $(top_srcdir)/stylesheet
-CLEANFILES += $(docname)/*.html
-figfiles = $(shell ls ${srcdir}/${figdir}/*.png)
-html: all convert-html copy-pics copy-style
-
-# Convert xml to html with xsltproc
-# xsltproc --xinclude -o outputdir/ /usr/share/sgml/docbook/xsl-stylesheets/html/chunk.xsl filename.xml
-convert-html: 
-	$(mkinstalldirs) "$(docname)"; \
-	for file in $(docname).xml; do \
-	    $(XSLTPROC) $(XSLTPROCFLAGS) $(XSLTPROCFLAGS_HTML) \
-	              -o "$(docname)/" \
-	              --param use.id.as.filename "1" \
-	              --stringparam chunker.output.encoding UTF-8  \
-	              "$(top_srcdir)/xsl/general-customization.xsl" "$(srcdir)/$$file"; \
-	done
-
-copy-pics:
-	$(mkinstalldirs) "$(docname)/$(figdir)"; \
-	for file in $(srcdir)/$(figdir)/*.png; do \
-	    basefile=`basename $$file`; \
-	    $(INSTALL_DATA) "$$file" "$(docname)/$(figdir)/$$basefile"; \
-	done
-
-copy-style:
-	$(mkinstalldirs) "$(docname)/stylesheet"; \
-	for file in $(styledir)/*.png; do \
-	    basefile=`basename $$file`; \
-	    $(INSTALL_DATA) "$$file" "$(docname)/stylesheet/$$basefile"; \
-	done
-
-install-html: html
-	$(mkinstalldirs) $(DESTDIR)$(otherdocdir)/$(docname);\
-	for file in $(docname)/*.html; do\
-	    basefile=`basename $$file`; \
-	    $(INSTALL_DATA) $$file $(DESTDIR)$(otherdocdir)/$(docname)/$$basefile;\
-	done
-	$(mkinstalldirs) "$(DESTDIR)$(otherdocdir)/$(docname)/$(figdir)"; \
-	for file in $(docname)/$(figdir)/*.png; do \
-	    basefile=`basename $$file`; \
-	    $(INSTALL_DATA) "$$file" "$(DESTDIR)$(otherdocdir)/$(docname)/$(figdir)/$$basefile"; \
-	done
-	$(mkinstalldirs) "$(DESTDIR)$(otherdocdir)/$(docname)/stylesheet"; \
-	for file in $(styledir)/*.png; do \
-	    basefile=`basename $$file`; \
-	    $(INSTALL_DATA) "$$file" "$(DESTDIR)$(otherdocdir)/$(docname)/stylesheet/$$basefile"; \
-	done
-
-uninstall-html:
-	-if test "$(docname)"; then \
-	    if test "$(figdir)"; then \
-	        for file in $(docname)/$(figdir)/*.png; do \
-	            basefile=`basename $$file`; \
-	            rm -f "$(DESTDIR)$(otherdocdir)/$(docname)/$(figdir)/$$basefile"; \
-	        done; \
-	        rmdir --ignore-fail-on-non-empty "$(DESTDIR)$(otherdocdir)/$(docname)/$(figdir)"; \
-	    fi; \
-	    for file in $(styledir)/*.png; do \
-	        basefile=`basename $$file`; \
-	        rm -f "$(DESTDIR)$(otherdocdir)/$(docname)/stylesheet/$$basefile"; \
-	    done; \
-	    rmdir --ignore-fail-on-non-empty "$(DESTDIR)$(otherdocdir)/$(docname)/stylesheet"; \
-	    for file in $(docname)/*.html; do \
-	        basefile=`basename $$file`; \
-	        rm -f "$(DESTDIR)$(otherdocdir)/$(docname)/$$basefile"; \
-	    done; \
-	    rmdir --ignore-fail-on-non-empty "$(DESTDIR)$(otherdocdir)/$(docname)"; \
-	    rmdir --ignore-fail-on-non-empty "$(DESTDIR)$(otherdocdir)"; \
-	fi
-
-check:
-	xmllint --postvalid --xinclude --noout --path ${top_srcdir}/docbook ${srcdir}/${docname}.xml



Summary of changes:
 CMakeLists.txt                |  22 -----
 CMakeNotes.txt                |  52 ----------
 HACKING                       | 124 ------------------------
 Makefile.am                   |  83 ----------------
 README                        |  35 -------
 autogen.sh                    |  63 ------------
 chm.make                      |  49 ----------
 cmake/AddGncDocTargets.cmake  |   7 --
 cmake/MakeDist.cmake          |  71 --------------
 cmake/MakeDistCheck.cmake     |  52 ----------
 configure.ac                  | 217 ------------------------------------------
 epub.make                     |  32 -------
 gnucash-docs.spec.in          |  49 ----------
 guide/C/Makefile.am           |  48 ----------
 guide/C/gnucash-guide-C.omf   | 111 ---------------------
 guide/CMakeLists.txt          |   5 +-
 guide/Makefile.am             |  34 -------
 guide/de/Makefile.am          |  45 ---------
 guide/de/gnucash-guide-de.omf |  56 -----------
 guide/it/Makefile.am          |  49 ----------
 guide/it/gnucash-guide-it.omf |  38 --------
 guide/ja/Makefile.am          |  41 --------
 guide/ja/gnucash-guide-ja.omf |  38 --------
 guide/pt/Makefile.am          |  47 ---------
 guide/pt/gnucash-guide-pt.omf | 112 ----------------------
 guide/ru/Makefile.am          |  43 ---------
 guide/ru/gnucash-guide-ru.omf | 114 ----------------------
 help/C/Makefile.am            |  39 --------
 help/C/gnucash-help-C.omf     |  71 --------------
 help/CMakeLists.txt           |   5 +-
 help/Makefile.am              |  34 -------
 help/de/Makefile.am           |  36 -------
 help/de/gnucash-help-de.omf   |  44 ---------
 help/it/Makefile.am           |  42 --------
 help/it/gnucash-help-it.omf   |  35 -------
 help/pt/Makefile.am           |  37 -------
 help/pt/gnucash-help-pt.omf   |  73 --------------
 mobi.make                     |  15 ---
 omf.make                      |  61 ------------
 pdf.make                      |  27 ------
 xmldocs.make                  | 155 ------------------------------
 41 files changed, 2 insertions(+), 2309 deletions(-)
 delete mode 100644 CMakeNotes.txt
 delete mode 100644 HACKING
 delete mode 100644 Makefile.am
 delete mode 100755 autogen.sh
 delete mode 100644 chm.make
 delete mode 100644 configure.ac
 delete mode 100644 epub.make
 delete mode 100644 gnucash-docs.spec.in
 delete mode 100644 guide/C/Makefile.am
 delete mode 100644 guide/C/gnucash-guide-C.omf
 delete mode 100644 guide/Makefile.am
 delete mode 100644 guide/de/Makefile.am
 delete mode 100644 guide/de/gnucash-guide-de.omf
 delete mode 100644 guide/it/Makefile.am
 delete mode 100644 guide/it/gnucash-guide-it.omf
 delete mode 100644 guide/ja/Makefile.am
 delete mode 100644 guide/ja/gnucash-guide-ja.omf
 delete mode 100644 guide/pt/Makefile.am
 delete mode 100644 guide/pt/gnucash-guide-pt.omf
 delete mode 100644 guide/ru/Makefile.am
 delete mode 100644 guide/ru/gnucash-guide-ru.omf
 delete mode 100644 help/C/Makefile.am
 delete mode 100644 help/C/gnucash-help-C.omf
 delete mode 100644 help/Makefile.am
 delete mode 100644 help/de/Makefile.am
 delete mode 100644 help/de/gnucash-help-de.omf
 delete mode 100644 help/it/Makefile.am
 delete mode 100644 help/it/gnucash-help-it.omf
 delete mode 100644 help/pt/Makefile.am
 delete mode 100644 help/pt/gnucash-help-pt.omf
 delete mode 100644 mobi.make
 delete mode 100644 omf.make
 delete mode 100644 pdf.make
 delete mode 100644 xmldocs.make



More information about the gnucash-changes mailing list