Files
gcc-reflection/gcc/doc/cpp/conf.py
Martin Liska bd044dae51 sphinx: add missing newline for conf.py files.
gcc/d/ChangeLog:

	* doc/conf.py: Add newline at last line.

gcc/ChangeLog:

	* doc/cpp/conf.py: Add newline at last line.
	* doc/cppinternals/conf.py: Add newline at last line.
	* doc/gcc/conf.py: Add newline at last line.
	* doc/gccint/conf.py: Add newline at last line.
	* doc/install/conf.py: Add newline at last line.

gcc/fortran/ChangeLog:

	* doc/gfc-internals/conf.py: Add newline at last line.
	* doc/gfortran/conf.py: Add newline at last line.

gcc/go/ChangeLog:

	* doc/conf.py: Add newline at last line.

libgomp/ChangeLog:

	* doc/conf.py: Add newline at last line.

libiberty/ChangeLog:

	* doc/conf.py: Add newline at last line.

libitm/ChangeLog:

	* doc/conf.py: Add newline at last line.

libquadmath/ChangeLog:

	* doc/conf.py: Add newline at last line.
2022-11-10 13:56:49 +01:00

31 lines
804 B
Python

# Configuration file for the Sphinx documentation builder.
import sys
sys.path.append('../../..//doc')
from baseconf import *
name = 'cpp'
project = 'The C Preprocessor'
copyright = '1987-2022 Free Software Foundation, Inc.'
authors = 'Richard M. Stallman, Zachary Weinberg'
# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
latex_documents = [
('index', f'{name}.tex', project, authors, 'manual'),
]
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('invocation', name, project, [authors], 1),
]
texinfo_documents = [
('index', name, project, authors, None, None, None, True)
]
set_common(name, globals())