r19841 - gnucash-docs/trunk - Add pdf generation rules to all relevant makefiles.

Geert Janssens gjanssens at code.gnucash.org
Fri Nov 19 14:59:29 EST 2010


Author: gjanssens
Date: 2010-11-19 14:59:29 -0500 (Fri, 19 Nov 2010)
New Revision: 19841
Trac: http://svn.gnucash.org/trac/changeset/19841

Modified:
   gnucash-docs/trunk/guide/C/Makefile.am
   gnucash-docs/trunk/guide/de_DE/Makefile.am
   gnucash-docs/trunk/guide/it_IT/Makefile.am
   gnucash-docs/trunk/guide/ja_JP/Makefile.am
   gnucash-docs/trunk/help/C/Makefile.am
   gnucash-docs/trunk/help/de_DE/Makefile.am
   gnucash-docs/trunk/help/it_IT/Makefile.am
Log:
Add pdf generation rules to all relevant makefiles.

Modified: gnucash-docs/trunk/guide/C/Makefile.am
===================================================================
--- gnucash-docs/trunk/guide/C/Makefile.am	2010-11-19 19:59:18 UTC (rev 19840)
+++ gnucash-docs/trunk/guide/C/Makefile.am	2010-11-19 19:59:29 UTC (rev 19841)
@@ -28,4 +28,4 @@
 include $(top_srcdir)/xmldocs.make
 include $(top_srcdir)/pdf.make
 dist-hook: app-dist-hook
-DISTCLEANFILES =  gnucash-guide-C.omf.out
\ No newline at end of file
+DISTCLEANFILES =  $(docname)-C.omf.out
\ No newline at end of file

Modified: gnucash-docs/trunk/guide/de_DE/Makefile.am
===================================================================
--- gnucash-docs/trunk/guide/de_DE/Makefile.am	2010-11-19 19:59:18 UTC (rev 19840)
+++ gnucash-docs/trunk/guide/de_DE/Makefile.am	2010-11-19 19:59:29 UTC (rev 19841)
@@ -1,7 +1,7 @@
 figdir = figures
 docname = gnucash-guide
 lang = de_DE
-omffile = gnucash-guide-de_DE.omf
+omffile = $(docname)-de_DE.omf
 entities = \
  ch_basics.xml \
  ch_oview.xml \
@@ -11,5 +11,6 @@
  glossary.xml \
  index.xml
 include $(top_srcdir)/xmldocs.make
+include $(top_srcdir)/pdf.make
 dist-hook: app-dist-hook
-DISTCLEANFILES =  gnucash-guide-de_DE.omf.out
+DISTCLEANFILES =  $(docname)-de_DE.omf.out

Modified: gnucash-docs/trunk/guide/it_IT/Makefile.am
===================================================================
--- gnucash-docs/trunk/guide/it_IT/Makefile.am	2010-11-19 19:59:18 UTC (rev 19840)
+++ gnucash-docs/trunk/guide/it_IT/Makefile.am	2010-11-19 19:59:29 UTC (rev 19841)
@@ -1,7 +1,7 @@
 figdir = figures
 docname = gnucash-guide
 lang = it_IT
-omffile = gnucash-guide-it_IT.omf
+omffile = $(docname)-it_IT.omf
 entities = \
 	fdl-appendix.xml \
 	legal.xml \
@@ -25,5 +25,6 @@
 	appendixc.xml \
 	appendixd.xml
 include $(top_srcdir)/xmldocs.make
+include $(top_srcdir)/pdf.make
 dist-hook: app-dist-hook
-DISTCLEANFILES =  gnucash-guide-it_IT.omf.out
+DISTCLEANFILES =  $(docname)-it_IT.omf.out

Modified: gnucash-docs/trunk/guide/ja_JP/Makefile.am
===================================================================
--- gnucash-docs/trunk/guide/ja_JP/Makefile.am	2010-11-19 19:59:18 UTC (rev 19840)
+++ gnucash-docs/trunk/guide/ja_JP/Makefile.am	2010-11-19 19:59:29 UTC (rev 19841)
@@ -1,7 +1,7 @@
 figdir = figures
 docname = gnucash-guide
 lang = ja_JP
-omffile = gnucash-guide-ja_JP.omf
+omffile = $(docname)-ja_JP.omf
 entities = \
 	fdl-appendix.xml \
 	legal.xml \
@@ -25,22 +25,6 @@
 	appendixc.xml \
 	appendixd.xml
 include $(top_srcdir)/xmldocs.make
+include $(top_srcdir)/pdf.make
 dist-hook: app-dist-hook
-DISTCLEANFILES =  gnucash-guide-ja_JP.omf.out
-
-# 2008-10-02, Tom Browder: PDF creation.
-#
-# See README and HACKING.
-#
-# For now, the environment variable, 'DOCBOOK_XSL', must be set manually.
-#
-# To do: Fix configure to find the right tools and pieces and make the target
-# if all parts are found.
-
-CLEANFILES = gnucash-guide.pdf gnucash-guide.fo
-pdf:
-	fop -xml gnucash-guide.xml -xsl $(DOCBOOK_XSL) -pdf gnucash-guide.pdf
-
-# for debugging intermediate output
-pdf-debug:
-	fop -d -xml gnucash-guide.xml -xsl $(DOCBOOK_XSL) -foout gnucash-guide.fo
+DISTCLEANFILES =  $(docname)-ja_JP.omf.out
\ No newline at end of file

Modified: gnucash-docs/trunk/help/C/Makefile.am
===================================================================
--- gnucash-docs/trunk/help/C/Makefile.am	2010-11-19 19:59:18 UTC (rev 19840)
+++ gnucash-docs/trunk/help/C/Makefile.am	2010-11-19 19:59:29 UTC (rev 19841)
@@ -1,7 +1,7 @@
 figdir = figures
 docname = gnucash-help
 lang = C
-omffile = gnucash-help-C.omf
+omffile = $(docname)-C.omf
 entities = \
 	Help_ch_Intro.xml \
         Help_ch_GettingHelp.xml \
@@ -19,5 +19,6 @@
 	Help_fdl-appendix.xml \
         Help_tips-appendix.xml
 include $(top_srcdir)/xmldocs.make
+include $(top_srcdir)/pdf.make
 dist-hook: app-dist-hook
-DISTCLEANFILES =  gnucash-help-C.omf.out
+DISTCLEANFILES =  $(docname)-C.omf.out

Modified: gnucash-docs/trunk/help/de_DE/Makefile.am
===================================================================
--- gnucash-docs/trunk/help/de_DE/Makefile.am	2010-11-19 19:59:18 UTC (rev 19840)
+++ gnucash-docs/trunk/help/de_DE/Makefile.am	2010-11-19 19:59:29 UTC (rev 19841)
@@ -1,7 +1,7 @@
 figdir = figures
 docname = gnucash-help
 lang = de_DE
-omffile = gnucash-help-de_DE.omf
+omffile = $(docname)-de_DE.omf
 entities = \
 	fdl-appendix.xml \
 	legal.xml \
@@ -9,5 +9,6 @@
 	chtacctseg.xml \
 	txf-categories.xml
 include $(top_srcdir)/xmldocs.make
+include $(top_srcdir)/pdf.make
 dist-hook: app-dist-hook
-DISTCLEANFILES =  gnucash-help-de_DE.omf.out
+DISTCLEANFILES =  $(docname)-de_DE.omf.out

Modified: gnucash-docs/trunk/help/it_IT/Makefile.am
===================================================================
--- gnucash-docs/trunk/help/it_IT/Makefile.am	2010-11-19 19:59:18 UTC (rev 19840)
+++ gnucash-docs/trunk/help/it_IT/Makefile.am	2010-11-19 19:59:29 UTC (rev 19841)
@@ -1,7 +1,7 @@
 figdir = figures
 docname = gnucash-help
 lang = it_IT
-omffile = gnucash-help-it_IT.omf
+omffile = $(docname)-it_IT.omf
 entities = \
 	Help_ch_Intro.xml \
 	Help_ch_GettingStarted.xml \
@@ -18,5 +18,6 @@
 	Help_fdl-appendix.xml \
         Help_tips-appendix.xml
 include $(top_srcdir)/xmldocs.make
+include $(top_srcdir)/pdf.make
 dist-hook: app-dist-hook
-DISTCLEANFILES =  gnucash-help-it_IT.omf.out
+DISTCLEANFILES =  $(docname)-it_IT.omf.out



More information about the gnucash-changes mailing list