]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/fortran/doc/gfortran/conf.py
sphinx: add missing newline for conf.py files.
[thirdparty/gcc.git] / gcc / fortran / doc / gfortran / conf.py
CommitLineData
c63539ff
ML
1# Configuration file for the Sphinx documentation builder.
2
3import sys
4sys.path.append('../../../..//doc')
5
6from baseconf import *
7
8name = 'gfortran'
9project = 'Using GNU Fortran'
10copyright = '1999-2022 Free Software Foundation, Inc.'
11authors = '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)
16latex_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).
22man_pages = [
23 ('gnu-fortran-command-options', name, 'GNU Fortran compiler', [authors], 1),
24]
25
26texinfo_documents = [
27 ('index', name, project, authors, None, None, None, True)
28]
29
bd044dae 30set_common(name, globals())