Basic usage step-by-step tutorial

This commit is contained in:
Gregory Becker
2016-11-12 16:28:02 -07:00
committed by Todd Gamblin
parent 216d269f1d
commit 7201053f2a
4 changed files with 1247 additions and 3 deletions

View File

@@ -3,7 +3,8 @@
# You can set these variables from the command line. # You can set these variables from the command line.
SPHINXOPTS = -E SPHINXOPTS = -E
SPHINXBUILD = sphinx-build JOBS ?= $(shell python -c 'import multiprocessing; print multiprocessing.cpu_count()')
SPHINXBUILD = sphinx-build -j $(JOBS)
PAPER = PAPER =
BUILDDIR = _build BUILDDIR = _build

File diff suppressed because it is too large Load Diff

View File

@@ -63,6 +63,7 @@ or refer to the full manual below.
:maxdepth: 2 :maxdepth: 2
:caption: Step-by-step :caption: Step-by-step
basic_usage_tutorial
module_file_tutorial module_file_tutorial
package_tutorial package_tutorial

View File

@@ -38,5 +38,4 @@ cd "$DOC_DIR"
# Treat warnings as fatal errors # Treat warnings as fatal errors
make clean --silent make clean --silent
make SPHINXOPTS=-W make SPHINXOPTS=-W JOBS=1