]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/fortran/doc/gfortran/conf.py
sphinx: copy files from texi2rst-generated repository
[thirdparty/gcc.git] / gcc / fortran / doc / gfortran / 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 = 'gfortran'
9 project = 'Using GNU Fortran'
10 copyright = '1999-2022 Free Software Foundation, Inc.'
11 authors = 'The gfortran team'
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 ('gnu-fortran-command-options', name, 'GNU Fortran compiler', [authors], 1),
24 ]
25
26 texinfo_documents = [
27 ('index', name, project, authors, None, None, None, True)
28 ]
29
30 set_common(name, globals())