]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/doc/install/conf.py
e69dfa15b84dade1c2ea4d75abd6f1e407985c7e
[thirdparty/gcc.git] / gcc / doc / install / 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 = 'install'
9 project = 'GCC Installation Instructions'
10 copyright = '1988-2022 Free Software Foundation, Inc.'
11 authors = 'GCC Developer Community'
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())