]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/fortran/doc/gfc-internals/conf.py
176e6310b897441e782560e42e7cbe0e3181372d
[thirdparty/gcc.git] / gcc / fortran / doc / gfc-internals / 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 = 'gfc-internals'
9 project = 'GNU Fortran Internals'
10 copyright = '2007-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 texinfo_documents = [
21 ('index', name, project, authors, None, None, None, True)
22 ]
23
24 set_common(name, globals())