mirror of
https://git.rtems.org/rtems-docs/
synced 2025-05-14 06:49:15 +08:00
13 lines
224 B
Python
13 lines
224 B
Python
import sys, os
|
|
sys.path.insert(0, os.path.abspath('../common/'))
|
|
|
|
from conf import *
|
|
|
|
latex_documents = [
|
|
('index',
|
|
'porting.tex',
|
|
u'RTEMS Porting Guide',
|
|
u'RTEMS Documentation Project',
|
|
'manual'),
|
|
]
|