Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(741)

Unified Diff: native_client_sdk/src/doc/README

Issue 23531031: Minor cleanups for SDK devsite docs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: native_client_sdk/src/doc/README
diff --git a/native_client_sdk/src/doc/README b/native_client_sdk/src/doc/README
index 7d3a40c5e073a8e907b6d3114dc81fdb381a54ca..5ef8489803effaa435b2367ebe6f5623c29b8766 100644
--- a/native_client_sdk/src/doc/README
+++ b/native_client_sdk/src/doc/README
@@ -14,7 +14,7 @@ documentation. Some of the files and directories here are special:
* _static/: Static files, like CSS, for the documentation. This should be seen
as part of the infrastructure - the real CSS comes from the real doc
publishing server.
-* _build/: Build artifacts (not checked into source control).
+* out/: Build artifacts (not checked into source control).
* Makefile & README
How to build
@@ -23,25 +23,25 @@ How to build
To build the docs you will needs sphinx installed (and sphinx-build in your
path), and simply run:
- make devsite
+ make
To rebuild all the pages always, add 'SPHINXOPTS=-a', e.g.:
- make SPHINXOPTS=-a devsite
+ make SPHINXOPTS=-a
To emit local-testing mode, instead of production mode, add:
SPHINXOPTS='-D devsite_production_mode=0'
e.g.:
- make SPHINXOPTS='-D devsite_production_mode=0' devsite
+ make SPHINXOPTS='-D devsite_production_mode=0'
binji 2013/09/05 00:52:51 While you're here, can you make a 'make' alias for
Production mode contains devsite-specific templating and non-HTML constructs.
The builder prints out the value of this setting - make sure it's what you
expect it to be. For example:
- $ make devsite
- sphinx-build -b devsite -d _build/doctrees . _build/devsite
+ $ make
+ sphinx-build -b devsite -d out/doctrees . out/devsite
Running Sphinx v1.2b1
loading pickled environment... done
----> Devsite builder with production mode = 1

Powered by Google App Engine
This is Rietveld 408576698