1 ## Makefile for the doc subdirectory of the GNU C++ Standard library.
3 ## Copyright (C) 2008-2014 Free Software Foundation, Inc.
5 ## This file is part of the libstdc++ version 3 distribution.
6 ## Process this file with automake to produce Makefile.in.
8 ## This file is part of the GNU ISO C++ Library. This library is free
9 ## software; you can redistribute it and/or modify it under the
10 ## terms of the GNU General Public License as published by the
11 ## Free Software Foundation; either version 3, or (at your option)
14 ## This library is distributed in the hope that it will be useful,
15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ## GNU General Public License for more details.
19 ## You should have received a copy of the GNU General Public License along
20 ## with this library; see the file COPYING3. If not see
21 ## <http://www.gnu.org/licenses/>.
23 include $(top_srcdir)/fragment.am
25 # Documentation Overview
27 # There are two main input materials for libstdc++ documentation.
28 # The first is the doxygen markup in libstdc++ sources, which is a
29 # reference to the API. And the second is the manual, via docbook markup in
32 # A third and more obscure option deals with charting performance
33 # tests, and should be considered experimental.
35 # Documentation conditionals for output.
38 STAMP_INSTALL_XML = doc-install-xml
46 STAMP_INSTALL_HTML = doc-install-html
54 STAMP_INSTALL_MAN = doc-install-man
62 STAMP_INSTALL_PDF = doc-install-pdf
70 STAMP_INSTALL_EPUB = doc-install-epub
73 STAMP_INSTALL_EPUB = doc-install-epub
76 # Documentation primary rules.
96 install-xml: $(STAMP_INSTALL_XML)
99 install-html: $(STAMP_INSTALL_HTML)
102 install-man: $(STAMP_INSTALL_MAN)
105 install-pdf: $(STAMP_INSTALL_PDF)
108 install-epub: $(STAMP_INSTALL_EPUB)
120 # Default creation and installation rules.
121 # Point to best sub-rule for the requested documentation target and
122 # create, and then install toplevel directory with standardized names
126 xmldir="$(DESTDIR)@docdir@"
127 stamp-xml: stamp-xml-single-docbook stamp-xml-single-doxygen
132 doc-install-xml: doc-xml
133 test -z ${xmldir} || $(mkinstalldirs) ${xmldir}
134 $(INSTALL_DATA) ${manual_xml} ${xmldir}
135 $(INSTALL_DATA) ${api_xml} ${xmldir}
138 htmldir="$(DESTDIR)@docdir@"
139 stamp-html: stamp-html-docbook-data stamp-html-doxygen
144 doc-install-html: doc-html
145 test -z ${htmldir} || $(mkinstalldirs) ${htmldir}
146 cp -r ${docbook_outdir}/html ${htmldir}/libstdc++-manual.html;
147 cp -r ${doxygen_outdir}/html ${htmldir}/libstdc++-api.html;
150 pdfdir="$(DESTDIR)@docdir@"
151 stamp-pdf: stamp-pdf-docbook stamp-pdf-doxygen
156 doc-install-pdf: doc-pdf
157 test -z ${pdfdir} || $(mkinstalldirs) ${pdfdir}
158 $(INSTALL_DATA) ${docbook_outdir}/pdf/libstdc++-manual.pdf ${pdfdir}
159 $(INSTALL_DATA) ${doxygen_outdir}/pdf/libstdc++-api.pdf ${pdfdir}
162 mandir="$(DESTDIR)@mandir@"
163 stamp-man: stamp-man-doxygen
168 doc-install-man: doc-man
169 test -z ${mandir} || $(mkinstalldirs) ${mandir}
170 cp -r ${doxygen_outdir}/man/man3 ${mandir}
173 infodir="$(DESTDIR)@infodir@"
174 stamp-texinfo: stamp-texinfo-docbook
175 $(STAMP) stamp-texinfo
177 stamp-info: stamp-info-docbook
180 doc-texinfo: stamp-texinfo
184 doc-install-texinfo: doc-texinfo
185 test -z ${infodir} || $(mkinstalldirs) ${infodir}
186 $(INSTALL_DATA) ${manual_texi} ${infodir}
188 doc-install-info: doc-info
189 test -z ${infodir} || $(mkinstalldirs) ${infodir}
190 $(INSTALL_DATA) ${manual_info} ${infodir}
193 # Assumes ruby installed
194 epubdir="$(DESTDIR)@docdir@"
195 stamp-epub: stamp-epub-docbook
200 doc-install-epub: doc-epub
201 test -z ${epubdir} || $(mkinstalldirs) ${epubdir}
202 $(INSTALL_DATA) ${manual_epub} ${epubdir}
205 # Doxygen configuration
206 # Assumes doxygen, graphviz (with dot), pdflatex installed
207 doxygen_script=${top_srcdir}/scripts/run_doxygen
208 doxygen_outdir = ${glibcxx_builddir}/doc/doxygen
209 api_xml = ${doxygen_outdir}/xml/libstdc++-api.xml
210 doxygen_pdf = ${doxygen_outdir}/latex/refman.pdf
211 api_pdf = ${doxygen_outdir}/pdf/libstdc++-api.pdf
213 ${doxygen_outdir}/xml:
214 mkdir -p ${doxygen_outdir}/xml
216 ${doxygen_outdir}/html:
217 mkdir -p ${doxygen_outdir}/html
219 ${doxygen_outdir}/latex:
220 mkdir -p ${doxygen_outdir}/latex
222 ${doxygen_outdir}/pdf:
223 mkdir -p ${doxygen_outdir}/pdf
225 ${doxygen_outdir}/man:
226 mkdir -p ${doxygen_outdir}/man
228 stamp-xml-doxygen: ${doxygen_outdir}/xml
229 -(srcdir=`cd ${top_srcdir}; ${PWD_COMMAND}`; \
230 builddir=`cd ..; ${PWD_COMMAND}`; \
231 ${SHELL} ${doxygen_script} \
232 --host_alias=${host_alias} --mode=xml $${srcdir} $${builddir} NO)
233 $(STAMP) stamp-xml-doxygen
235 stamp-xml-single-doxygen: stamp-xml-doxygen
236 @echo "Generating doxygen xml single file..."
237 $(XSLTPROC) ${doxygen_outdir}/xml/combine.xslt \
238 ${doxygen_outdir}/xml/index.xml > ${api_xml};
239 $(STAMP) stamp-xml-single-doxygen
241 stamp-html-doxygen: ${doxygen_outdir}/html
242 -(srcdir=`cd ${top_srcdir}; ${PWD_COMMAND}`; \
243 builddir=`cd ..; ${PWD_COMMAND}`; \
244 ${SHELL} ${doxygen_script} \
245 --host_alias=${host_alias} --mode=html $${srcdir} $${builddir} YES)
246 $(STAMP) stamp-html-doxygen
248 stamp-latex-doxygen: ${doxygen_outdir}/latex
249 -(srcdir=`cd ${top_srcdir}; ${PWD_COMMAND}`; \
250 builddir=`cd ..; ${PWD_COMMAND}`; \
251 ${SHELL} ${doxygen_script} \
252 --host_alias=${host_alias} --mode=latex $${srcdir} $${builddir} NO)
253 $(STAMP) stamp-latex-doxygen
255 # Chance of loooooonnggg creation time on this rule. Iff this fails,
256 # look at refman.log and see if TeX's memory is exhausted. Symptoms
257 # include asking a wizard to enlarge capacity. If this is the case,
258 # find texmf.cnf and add a zero for pool_size, string_vacancies,
259 # max_strings, and pool_free values.
260 stamp-pdf-doxygen: stamp-latex-doxygen ${doxygen_outdir}/pdf
261 -(cd ${doxygen_outdir}/latex && $(MAKE) -i pdf;)
262 echo "Generating doxygen pdf file...";
263 if [ -f ${doxygen_pdf} ]; then \
264 mv ${doxygen_pdf} ${api_pdf} ; \
265 echo ":: PDF file is ${api_pdf}"; \
270 $(STAMP) stamp-pdf-doxygen
272 stamp-man-doxygen: ${doxygen_outdir}/man
273 -(srcdir=`cd ${top_srcdir}; ${PWD_COMMAND}`; \
274 builddir=`cd ..; ${PWD_COMMAND}`; \
275 ${SHELL} ${doxygen_script} \
276 --host_alias=${host_alias} --mode=man $${srcdir} $${builddir} YES)
277 $(STAMP) stamp-man-doxygen
279 doc-xml-doxygen: stamp-xml-doxygen
280 doc-xml-single-doxygen: stamp-xml-single-doxygen
281 doc-html-doxygen: stamp-html-doxygen
282 doc-latex-doxygen: stamp-latex-doxygen
283 doc-pdf-doxygen: stamp-pdf-doxygen
284 doc-man-doxygen: stamp-man-doxygen
287 # Docbook configuration.
294 docbook_outdir = ${glibcxx_builddir}/doc/docbook
295 xml_dir = ${glibcxx_srcdir}/doc/xml
297 xml_sources_basic = \
298 ${xml_dir}/spine.xml \
299 ${xml_dir}/authors.xml \
303 xml_sources_manual = \
304 ${xml_dir}/manual/abi.xml \
305 ${xml_dir}/manual/algorithms.xml \
306 ${xml_dir}/manual/allocator.xml \
307 ${xml_dir}/manual/auto_ptr.xml \
308 ${xml_dir}/manual/atomics.xml \
309 ${xml_dir}/manual/backwards_compatibility.xml \
310 ${xml_dir}/manual/bitmap_allocator.xml \
311 ${xml_dir}/manual/build_hacking.xml \
312 ${xml_dir}/manual/codecvt.xml \
313 ${xml_dir}/manual/concurrency.xml \
314 ${xml_dir}/manual/concurrency_extensions.xml \
315 ${xml_dir}/manual/configure.xml \
316 ${xml_dir}/manual/containers.xml \
317 ${xml_dir}/manual/ctype.xml \
318 ${xml_dir}/manual/debug_mode.xml \
319 ${xml_dir}/manual/debug.xml \
320 ${xml_dir}/manual/diagnostics.xml \
321 ${xml_dir}/manual/documentation_hacking.xml \
322 ${xml_dir}/manual/evolution.xml \
323 ${xml_dir}/manual/extensions.xml \
324 ${xml_dir}/manual/internals.xml \
325 ${xml_dir}/manual/intro.xml \
326 ${xml_dir}/manual/io.xml \
327 ${xml_dir}/manual/iterators.xml \
328 ${xml_dir}/manual/locale.xml \
329 ${xml_dir}/manual/localization.xml \
330 ${xml_dir}/manual/messages.xml \
331 ${xml_dir}/manual/mt_allocator.xml \
332 ${xml_dir}/manual/numerics.xml \
333 ${xml_dir}/manual/parallel_mode.xml \
334 ${xml_dir}/manual/policy_data_structures.xml \
335 ${xml_dir}/manual/policy_data_structures_biblio.xml \
336 ${xml_dir}/manual/prerequisites.xml \
337 ${xml_dir}/manual/profile_mode.xml \
338 ${xml_dir}/manual/shared_ptr.xml \
339 ${xml_dir}/manual/spine.xml \
340 ${xml_dir}/manual/status_cxx1998.xml \
341 ${xml_dir}/manual/status_cxx2011.xml \
342 ${xml_dir}/manual/status_cxxtr1.xml \
343 ${xml_dir}/manual/status_cxxtr24733.xml \
344 ${xml_dir}/manual/strings.xml \
345 ${xml_dir}/manual/support.xml \
346 ${xml_dir}/manual/test.xml \
347 ${xml_dir}/manual/test_policy_data_structures.xml \
348 ${xml_dir}/manual/using.xml \
349 ${xml_dir}/manual/using_exceptions.xml \
350 ${xml_dir}/manual/utilities.xml \
351 ${xml_dir}/manual/appendix_free.xml \
352 ${xml_dir}/manual/appendix_contributing.xml \
353 ${xml_dir}/manual/appendix_porting.xml
355 xml_sources_extra = \
356 ${xml_dir}/gnu/fdl-1.3.xml \
357 ${xml_dir}/gnu/gpl-3.0.xml
360 ${xml_sources_basic} \
361 ${xml_sources_manual} \
364 xml_image_dir = ${xml_dir}/images
366 ${xml_image_dir}/confdeps.png \
367 ${xml_image_dir}/pbds_balls_and_bins.png \
368 ${xml_image_dir}/pbds_container_tag_hierarchy.png \
369 ${xml_image_dir}/pbds_different_underlying_dss_1.png \
370 ${xml_image_dir}/pbds_different_underlying_dss_2.png \
371 ${xml_image_dir}/pbds_embedded_lists_1.png \
372 ${xml_image_dir}/pbds_embedded_lists_2.png \
373 ${xml_image_dir}/pbds_embedded_lists_3.png \
374 ${xml_image_dir}/pbds_exception_hierarchy.png \
375 ${xml_image_dir}/pbds_hash_policy_cd.png \
376 ${xml_image_dir}/pbds_hash_ranged_hash_range_hashing_fns.png \
377 ${xml_image_dir}/pbds_hash_range_hashing_seq_diagram2.png \
378 ${xml_image_dir}/pbds_hash_range_hashing_seq_diagram.png \
379 ${xml_image_dir}/pbds_insert_resize_sequence_diagram1.png \
380 ${xml_image_dir}/pbds_insert_resize_sequence_diagram2.png \
381 ${xml_image_dir}/pbds_insert_resize_sequence_diagram3.png \
382 ${xml_image_dir}/pbds_invalidation_guarantee_erase.png \
383 ${xml_image_dir}/pbds_invalidation_tag_hierarchy.png \
384 ${xml_image_dir}/pbds_list_update.png \
385 ${xml_image_dir}/pbds_node_invariants.png \
386 ${xml_image_dir}/pbds_pat_trie.png \
387 ${xml_image_dir}/pbds_point_iterator_hierarchy.png \
388 ${xml_image_dir}/pbds_point_iterators_range_ops_1.png \
389 ${xml_image_dir}/pbds_point_iterators_range_ops_2.png \
390 ${xml_image_dir}/pbds_priority_queue_different_underlying_dss.png \
391 ${xml_image_dir}/pbds_priority_queue_tag_hierarchy.png \
392 ${xml_image_dir}/pbds_rationale_null_node_updator.png \
393 ${xml_image_dir}/pbds_resize_policy_cd.png \
394 ${xml_image_dir}/pbds_restoring_node_invariants.png \
395 ${xml_image_dir}/pbds_simple_list.png \
396 ${xml_image_dir}/pbds_tree_node_invalidations.png \
397 ${xml_image_dir}/pbds_tree_node_invariants.png \
398 ${xml_image_dir}/pbds_tree_node_updator_policy_cd.png \
399 ${xml_image_dir}/pbds_trie_node_updator_policy_cd.png \
400 ${xml_image_dir}/pbds_update_seq_diagram.png
402 xml_image_generated = \
403 ${xml_image_dir}/pbds_binary_priority_queue_int_push_pop.png \
404 ${xml_image_dir}/pbds_binary_priority_queue_int_push.png \
405 ${xml_image_dir}/pbds_ccgp_hash_int_subscript_insert.png \
406 ${xml_image_dir}/pbds_cc_hash_int_find.png \
407 ${xml_image_dir}/pbds_cc_hash_int_subscript_find.png \
408 ${xml_image_dir}/pbds_cc_hash_int_subscript_insert.png \
409 ${xml_image_dir}/pbds_gp_hash_int_find.png \
410 ${xml_image_dir}/pbds_gp_hash_int_subscript_find.png \
411 ${xml_image_dir}/pbds_gp_hash_int_subscript_insert.png \
412 ${xml_image_dir}/pbds_hash_int_erase_mem.png \
413 ${xml_image_dir}/pbds_hash_text_find.png \
414 ${xml_image_dir}/pbds_hash_zlob_int_find.png \
415 ${xml_image_dir}/pbds_multimap_text_find_large_s2p_hash.png \
416 ${xml_image_dir}/pbds_multimap_text_find_large_s2p_tree.png \
417 ${xml_image_dir}/pbds_multimap_text_find_small_s2p_hash.png \
418 ${xml_image_dir}/pbds_multimap_text_find_small_s2p_tree.png \
419 ${xml_image_dir}/pbds_multimap_text_insert_large_s2p_hash.png \
420 ${xml_image_dir}/pbds_multimap_text_insert_large_s2p_tree.png \
421 ${xml_image_dir}/pbds_multimap_text_insert_mem_large_s2p_hash.png \
422 ${xml_image_dir}/pbds_multimap_text_insert_mem_large_s2p_tree.png \
423 ${xml_image_dir}/pbds_multimap_text_insert_mem_small_s2p_hash.png \
424 ${xml_image_dir}/pbds_multimap_text_insert_mem_small_s2p_tree.png \
425 ${xml_image_dir}/pbds_multimap_text_insert_small_s2p_hash.png \
426 ${xml_image_dir}/pbds_multimap_text_insert_small_s2p_tree.png \
427 ${xml_image_dir}/pbds_pairing_priority_queue_text_modify_down_thin.png \
428 ${xml_image_dir}/pbds_pairing_priority_queue_text_modify_up_thin.png \
429 ${xml_image_dir}/pbds_pairing_priority_queue_text_push_pop.png \
430 ${xml_image_dir}/pbds_pairing_priority_queue_text_push.png \
431 ${xml_image_dir}/pbds_priority_queue_int_push_pop.png \
432 ${xml_image_dir}/pbds_priority_queue_int_push.png \
433 ${xml_image_dir}/pbds_priority_queue_text_join.png \
434 ${xml_image_dir}/pbds_priority_queue_text_modify_down.png \
435 ${xml_image_dir}/pbds_priority_queue_text_modify_up.png \
436 ${xml_image_dir}/pbds_priority_queue_text_pop_mem.png \
437 ${xml_image_dir}/pbds_priority_queue_text_push_pop.png \
438 ${xml_image_dir}/pbds_priority_queue_text_push.png \
439 ${xml_image_dir}/pbds_tree_int_find.png \
440 ${xml_image_dir}/pbds_tree_order_statistics.png \
441 ${xml_image_dir}/pbds_tree_split_join.png \
442 ${xml_image_dir}/pbds_tree_text_find.png \
443 ${xml_image_dir}/pbds_tree_text_insert_node.png \
444 ${xml_image_dir}/pbds_tree_text_insert_trie.png \
445 ${xml_image_dir}/pbds_tree_text_insert_vector.png \
446 ${xml_image_dir}/pbds_tree_text_lor_find.png
448 xml_images = ${xml_image_basic} ${xml_image_generated}
450 xml_extradir = ${glibcxx_srcdir}/doc/html/ext
452 ${xml_extradir}/lwg-active.html \
453 ${xml_extradir}/lwg-closed.html \
454 ${xml_extradir}/lwg-defects.html
457 ${xml_dir}/book.txml \
458 ${xml_dir}/chapter.txml \
459 ${xml_dir}/class.txml \
460 ${xml_image_dir}/confdeps.dot \
461 ${xml_image_dir}/confdeps.pdf
464 XSLT_FLAGS = --nonet --xinclude
465 XSLT_PARAM = --param toc.section.depth 4
466 #XSL_STYLE_DIR = /usr/share/xml/docbook/stylesheet/docbook-xsl-ns
467 #XSL_STYLE_DIR = /usr/share/sgml/docbook/xsl-ns-stylesheets
468 XSL_FO_STYLE = $(XSL_STYLE_DIR)/fo/docbook.xsl
469 XSL_HTML_STYLE = $(XSL_STYLE_DIR)/xhtml/chunk.xsl
470 XSL_HTML_SINGLE_STYLE = $(XSL_STYLE_DIR)/html/docbook.xsl
471 XSL_EPUB_STYLE = $(XSL_STYLE_DIR)/epub3/chunk.xsl
472 XSL_LOCAL_STYLE = ${glibcxx_builddir}/doc/xsl/customization.xsl
474 ${docbook_outdir}/epub:
475 mkdir -p ${docbook_outdir}/epub
476 mkdir -p ${docbook_outdir}/epub/OEBPS/images
478 ${docbook_outdir}/fo:
479 mkdir -p ${docbook_outdir}/fo
481 ${docbook_outdir}/html:
482 mkdir -p ${docbook_outdir}/html
483 mkdir -p ${docbook_outdir}/html/ext
484 mkdir -p ${docbook_outdir}/html/images
485 mkdir -p ${docbook_outdir}/html/manual
487 ${docbook_outdir}/pdf:
488 mkdir -p ${docbook_outdir}/pdf
490 ${docbook_outdir}/latex:
491 mkdir -p ${docbook_outdir}/latex
493 ${docbook_outdir}/texinfo:
494 mkdir -p ${docbook_outdir}/texinfo
496 ${docbook_outdir}/xml:
497 mkdir -p ${docbook_outdir}/xml
501 # Some info on canonicalization
502 # http://www.mail-archive.com/help-texinfo@gnu.org/msg00864.html
503 manual_xml = ${docbook_outdir}/xml/libstdc++-manual.xml
504 set_xml = ${docbook_outdir}/xml/libstdc++-set.xml
505 stamp-xml-single-docbook: $(xml_sources) ${docbook_outdir}/xml
506 @echo "Generating XML single..."
507 $(XMLLINT) $(XMLLINT_FLAGS) \
508 ${top_srcdir}/doc/xml/manual/spine.xml > ${manual_xml};
509 $(XMLLINT) $(XMLLINT_FLAGS) \
510 ${top_srcdir}/doc/xml/spine.xml > ${set_xml};
511 $(STAMP) stamp-xml-single-docbook
513 doc-xml-single-docbook: stamp-xml-single-docbook
515 # Validate existing XML structure.
517 LINT_FLAGS = --debug --xinclude --noent --noblanks --noout
518 SCHEMA_FLAGS = --dtdvalid http://www.docbook.org/xml/5.0/dtd/docbook.dtd
519 SCHEMA_RNG_FLAGS = --relaxng http://www.docbook.org/xml/5.0/rng/docbook.rng
520 #SCHEMA_FLAGS = --nonet --dtdvalid /usr/share/xxx/dtd/5.0/docbook.dtd
521 XMLLINT_VALID_FLAGS = $(LINT_FLAGS) $(SCHEMA_FLAGS)
522 XMLLINT_FLAGS = --xinclude --nsclean --c14n --noent --noblanks --nocdata
523 doc-xml-validate-docbook: doc-xml-validate-dtd-db
525 doc-xml-validate-dtd-db: $(xml_sources) $(xml_images)
526 @echo "Generating XML validation log..."
527 $(XMLLINT) $(XMLLINT_VALID_FLAGS) ${top_srcdir}/doc/xml/spine.xml
529 doc-xml-validate-rng-db: $(xml_sources) $(xml_images) doc-xml-single-docbook
530 @echo "Generating XML RelaxNG validation log..."
531 $(XMLLINT) $(LINT_FLAGS) $(SCHEMA_RNG_FLAGS) ${set_xml}
534 stamp-html-docbook-images: stamp-html-docbook $(xml_images)
535 $(INSTALL_DATA) $(xml_images) ${docbook_outdir}/html/images
536 $(STAMP) stamp-html-docbook-images
538 stamp-html-docbook-lwg: stamp-html-docbook $(xml_extra)
539 $(INSTALL_DATA) $(xml_extra) ${docbook_outdir}/html/ext
540 $(STAMP) stamp-html-docbook-lwg
542 stamp-html-docbook-data: stamp-html-docbook-images stamp-html-docbook-lwg
543 $(STAMP) stamp-html-docbook-data
545 # HTML, "chunked" into index plus chapters as separate pages
546 stamp-html-docbook: $(xml_sources) ${docbook_outdir}/html
547 @echo "Generating html files..."
548 $(XSLTPROC) $(XSLT_PARAM) $(XSLT_FLAGS) -o ${docbook_outdir}/html/ \
549 --stringparam chunker.output.encoding UTF-8 \
551 ${top_srcdir}/doc/xml/spine.xml
552 $(STAMP) stamp-html-docbook
554 doc-html-docbook: stamp-html-docbook-data
557 # NB: Have to generate customization XSL for UTF-8 output.
558 manual_html = ${docbook_outdir}/html/libstdc++-manual-single.html
559 stamp-html-single-docbook: $(xml_sources) ${docbook_outdir}/html
560 @echo "Generating html single file..."
561 $(XSLTPROC) $(XSLT_PARAM) $(XSLT_FLAGS) -o ${manual_html} \
563 ${top_srcdir}/doc/xml/spine.xml
564 $(STAMP) stamp-html-single-docbook
566 doc-html-single-docbook: stamp-html-single-docbook
569 stamp-fo-docbook: $(xml_sources) ${docbook_outdir}/fo
570 @echo "Generating FO files..."
571 $(XSLTPROC) $(XSLT_FLAGS) -o ${docbook_outdir}/fo/spine.fo \
572 $(XSL_FO_STYLE) ${top_srcdir}/doc/xml/spine.xml
573 $(STAMP) stamp-fo-docbook
575 doc-fo-docbook: stamp-fo-docbook
578 manual_pdf = ${docbook_outdir}/pdf/libstdc++-manual.pdf
579 DBLATEX_FLAGS = --verbose --pdf --dump --debug --tmpdir=${docbook_outdir}/latex
581 doc-pdf-docbook-dirs: ${docbook_outdir}/pdf ${docbook_outdir}/latex
583 doc-pdf-docbook-pre: $(xml_sources) doc-pdf-docbook-dirs
585 stamp-pdf-docbook: doc-pdf-docbook-pre doc-xml-single-docbook
586 @echo "Generating pdf dblatex files..."
587 dblatex $(DBLATEX_FLAGS) -o ${manual_pdf} \
588 ${top_srcdir}/doc/xml/spine.xml
589 $(STAMP) stamp-pdf-docbook
591 doc-pdf-docbook: stamp-pdf-docbook
593 # TEXINFO, via docbook2X
594 # NB: Both experimental and tempermental
595 manual_texi = ${docbook_outdir}/texinfo/libstdc++-manual.texi
596 manual_info = ${docbook_outdir}/texinfo/libstdc++-manual.info
598 --encoding=utf-8//TRANSLIT \
599 --string-param output-file="libstdc++-manual" \
600 --string-param directory-category="GNU C++ Library" \
601 --string-param explicit-node-names=true
603 stamp-texinfo-docbook: stamp-xml-single-docbook ${docbook_outdir}/texinfo
604 @echo "Generating texinfo files..."
605 db2x_docbook2texi $(DB2TEXI_FLAGS) ${set_xml}
606 mv libstdc++-manual.texi ${manual_texi}
607 $(STAMP) stamp-texinfo-docbook
609 stamp-info-docbook: stamp-texinfo-docbook
610 @echo "Generating info files..."
611 $(MAKEINFO) $(MAKEINFOFLAGS) ${manual_texi}
612 $(STAMP) stamp-info-docbook
614 doc-texinfo-docbook: stamp-texinfo-docbook
616 doc-info-docbook: stamp-info-docbook
619 # http://sourceforge.net/projects/docbook/files/epub3/
620 # Can verify document with epubcheck
621 manual_epub = ${docbook_outdir}/epub/libstdc++-manual.epub
622 stamp-epub-docbook: stamp-xml-single-docbook ${docbook_outdir}/epub
623 @echo "Generating epub files..."
624 if [ ! -d "${docbook_outdir}/images" ]; then \
625 $(LN_S) ${top_srcdir}/doc/xml/images ${docbook_outdir}/; \
627 $(XSLTPROC) $(XSLT_PARAM) $(XSLT_FLAGS) \
628 --stringparam base.dir "${docbook_outdir}/epub/OEBPS/" \
629 $(XSL_EPUB_STYLE) ${top_srcdir}/doc/xml/spine.xml
630 $(INSTALL_DATA) $(xml_images) ${docbook_outdir}/epub/OEBPS/images
631 zip -X0 ${manual_epub} ${docbook_outdir}/epub/mimetype
632 zip -r -X9 ${manual_epub} ${docbook_outdir}/epub/META-INF ${docbook_outdir}/epub/OEBPS
633 $(STAMP) stamp-epub-docbook
635 doc-epub-docbook: stamp-epub-docbook
637 # Performance doc and graph configuration.
638 # Assumes pychart, beautiful soup installed.
639 # Generates the plots/graph imagery for performance testing.
640 doc_performance_script=${top_srcdir}/scripts/make_graph.py
641 doc-svg-performance: ${docbook_outdir}/xml
642 -@(chmod + ${doc_performance_script}; \
643 ${doc_performance_script} \
644 ${top_srcdir}/testsuite/data/make_graph_test_infos.xml \
645 ${glibcxx_builddir}/testsuite \
646 ${glibcxx_builddir}/doc/docbook/xml/images)
648 .PHONY: doc-doxygen-html doc-doxygen-man doc-performance
650 # By adding these files here, automake will remove them for 'make clean'
651 CLEANFILES = *.log stamp*
653 # To remove directories.
655 rm -rf man html pdf fo xml doxygen docbook ./libstdc++-* db2t*