Revert "c++: Fix overeager Woverloaded-virtual with conversion operators [PR109918]"
[official-gcc.git] / gcc / ada / doc / Makefile
blob4adfd368cc8d090026ec1f072452850c9db9c879
1 # Makefile for Sphinx documentation
3 # You can set these variables from the command line.
4 SPHINXOPTS = -W
5 SPHINXBUILD = DOC_NAME=$* sphinx-build
6 PAPER =
7 BUILDDIR = build
8 SOURCEDIR = .
10 # Internal variables.
11 PAPEROPT_a4 = -D latex_paper_size=a4
12 PAPEROPT_letter = -D latex_paper_size=letter
13 ALLSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) \
14 -c $(SOURCEDIR)/share \
15 -d $(BUILDDIR)/$*/doctrees \
16 $(SOURCEDIR)
17 DOC_LIST=gnat_rm gnat_ugn gnat-style
18 FMT_LIST=html pdf txt info
20 .PHONY: help clean
22 help:
23 @echo "Please use \`make <target>' where <target> is one of"
24 @echo " DOC_NAME.html to make standalone HTML files"
25 @echo " DOC_NAME.pdf to make LaTeX files and run them through pdflatex"
26 @echo " DOC_NAME.txt to make text files"
27 @echo " DOC_NAME.info to make info files"
28 @echo " DOC_NAME.texinfo to make Texinfo files"
29 @echo " DOC_NAME.all to build DOC_NAME for all previous formats"
30 @echo " all to build all documentations in all formats"
31 @echo " html-all same as previous rule but only for HTML format"
32 @echo " pdf-all same as previous rule but only for PDF format"
33 @echo " txt-all same as previous rule but only for text format"
34 @echo " info-all same as previous rule but only for info format"
35 @echo " texinfo-all same as previous rule but only for texinfo format"
36 @echo ""
37 @echo "DOC_NAME should be a documentation name in the following list:"
38 @echo " $(DOC_LIST)"
39 @echo ""
40 @echo "source and location can be overridden using SOURCEDIR and BUILDDIR variables"
42 clean:
43 -rm -rf $(BUILDDIR)
45 .PHONY: mk_empty_dirs
46 mk_empty_dirs:
47 mkdir -p share/_static
49 %.html: mk_empty_dirs
50 $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/$*/html
52 %.pdf: mk_empty_dirs
53 $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/$*/pdf
54 $(MAKE) -C $(BUILDDIR)/$*/pdf all-pdf LATEXOPTS="-interaction=nonstopmode"
56 %.txt: mk_empty_dirs
57 $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/$*/txt
58 $(MAKE) -C $(BUILDDIR)/$*/txt plaintext
60 %.info: mk_empty_dirs
61 $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/$*/info
62 $(MAKE) -C $(BUILDDIR)/$*/info info
64 %.texinfo: mk_empty_dirs
65 $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/$*/texinfo
66 sed -e 's/^@dircategory/@dircategory GNU Ada Tools/g' < $(BUILDDIR)/$*/texinfo/$*.texi > $(BUILDDIR)/../../$*.texi
68 .PHONY: html-all
69 html-all: $(foreach doc, $(DOC_LIST), $(doc).html)
71 .PHONY: pdf-all
72 pdf-all: $(foreach doc, $(DOC_LIST), $(doc).pdf)
74 .PHONY: txt-all
75 txt-all: $(foreach doc, $(DOC_LIST), $(doc).txt)
77 .PHONY: info-all
78 info-all: $(foreach doc, $(DOC_LIST), $(doc).info)
80 .PHONY: texinfo-all
81 texinfo-all: $(foreach doc, $(DOC_LIST), $(doc).texinfo)
83 %.all:
84 $(MAKE) $(foreach fmt, $(FMT_LIST), $*.$(fmt))
86 .PHONY: all
87 all: $(foreach fmt, $(FMT_LIST), $(fmt)-all)