mirror of
https://forge.sourceware.org/marek/gcc.git
synced 2026-02-22 03:47:02 -05:00
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.
25 lines
647 B
Python
25 lines
647 B
Python
# Configuration file for the Sphinx documentation builder.
|
|
|
|
import sys
|
|
sys.path.append('../..//doc')
|
|
|
|
from baseconf import *
|
|
|
|
name = 'libgomp'
|
|
project = 'GNU Offloading and Multi Processing Runtime Library'
|
|
copyright = '2006-2022 Free Software Foundation, Inc.'
|
|
authors = 'GCC Developer Community'
|
|
|
|
# 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'),
|
|
]
|
|
|
|
texinfo_documents = [
|
|
('index', name, project, authors, None, None, None, True)
|
|
]
|
|
|
|
set_common(name, globals())
|