Changeset 9330bfb in rtems-docs
- Timestamp:
- Nov 9, 2016, 6:08:05 AM (4 years ago)
- Branches:
- 4.11, 5, am, master
- Children:
- 58c815c, 6297ad3
- Parents:
- 5431beb
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
README.txt
r5431beb r9330bfb 19 19 SIngle HTML - Single HTML, one file per manual. 20 20 21 The PDF format is c erated using Latex and that uses texlive packages. This21 The PDF format is created using Latex and that uses texlive packages. This 22 22 exposes us to the complex world of Latex however the quality of the documents 23 23 created is worth it. … … 230 230 To build enter in the top directory: 231 231 232 $ ./waf configure [--pdf] [--singlehtml] [--prefix] [--sphinx-verbose] 232 $ ./waf configure [--pdf] [--singlehtml] [--prefix] \ 233 [--sphinx-verbose] [--disable-extra-fonts] 233 234 $ ./waf 234 235 235 236 The '--pdf' and '--singlehtml' options can be added to configure to build those 236 237 output formats. 238 239 The '--disable-extra-fonts' allows you to build PDF documents with out the 240 fonts we use for a better quality document. Use this option to build without 241 needing the extra fonts accepting you will get poor quality documents. 237 242 238 243 To build and install to a specific location: -
common/latex.py
r5431beb r9330bfb 108 108 109 109 def configure_tests(conf): 110 111 110 # 112 111 # Using a hint from ita (thank you) : … … 165 164 conf.env.RTEMSEXTRAFONTS = 'rtemsextrafonts.sty' 166 165 else: 166 if not conf.options.disable_extra_fonts: 167 conf.fatal('Extra fonts not found, install or use --disable-extra-fonts') 167 168 conf.env.RTEMSEXTRAFONTS = 'rtemsextrafonts-null.sty' -
common/waf.py
r5431beb r9330bfb 204 204 205 205 def doc_singlehtml(ctx, source_dir, conf_dir): 206 207 206 # 208 207 # Use a run command to handle stdout and stderr output from inliner. Using … … 284 283 285 284 def cmd_options(ctx): 285 ctx.add_option('--disable-extra-fonts', 286 action = 'store_true', 287 default = False, 288 help = "Disable building with extra fonts for better quality (lower quality).") 286 289 ctx.add_option('--sphinx-verbose', 287 290 action = 'store',
Note: See TracChangeset
for help on using the changeset viewer.