]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/go/doc/conf.py
unswitching of outer loops
[thirdparty/gcc.git] / gcc / go / doc / conf.py
1 # Configuration file for the Sphinx documentation builder.
2
3 import sys
4 sys.path.append('../../..//doc')
5
6 from baseconf import *
7
8 name = 'gccgo'
9 project = 'The GNU Go Compiler'
10 copyright = '2010-2022 Free Software Foundation, Inc.'
11 authors = 'Ian Lance Taylor'
12
13 # Grouping the document tree into Texinfo files. List of tuples
14 # (source start file, target name, title, author,
15 # dir menu entry, description, category)
16 latex_documents = [
17 ('index', f'{name}.tex', project, authors, 'manual'),
18 ]
19
20 # One entry per manual page. List of tuples
21 # (source start file, name, description, authors, manual section).
22 man_pages = [
23 ('invoking-gccgo', name, 'A GCC-based compiler for the Go language', [authors], 1),
24 ]
25
26 texinfo_documents = [
27 ('index', name, project, authors, None, None, None, True)
28 ]
29
30 set_common(name, globals())