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

Side by Side Diff: native_client_sdk/src/doc/Makefile

Issue 25548007: [NaCl Docs] Add a new doc build configuration: devsite-staging. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Makefile for Sphinx documentation 1 # Makefile for Sphinx documentation
2 # 2 #
3 3
4 # You can set these variables from the command line. 4 # You can set these variables from the command line.
5 SPHINXOPTS = -W 5 SPHINXOPTS = -W
6 SPHINXBUILD = sphinx-build 6 SPHINXBUILD = sphinx-build
7 PAPER = 7 PAPER =
8 BUILDDIR = _build 8 BUILDDIR = _build
9 9
10 # User-friendly check for sphinx-build 10 # User-friendly check for sphinx-build
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 @echo 176 @echo
177 @echo "Build finished. The XML files are in $(BUILDDIR)/xml." 177 @echo "Build finished. The XML files are in $(BUILDDIR)/xml."
178 178
179 pseudoxml: 179 pseudoxml:
180 $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml 180 $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml
181 @echo 181 @echo
182 @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml ." 182 @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml ."
183 183
184 devsite-prod: 184 devsite-prod:
185 $(SPHINXBUILD) -b devsite -D devsite_production_mode=1 $(ALLSPHINXOPTS) $(BUILDDIR)/devsite-prod 185 $(SPHINXBUILD) -b devsite -D devsite_production_mode=1 $(ALLSPHINXOPTS) $(BUILDDIR)/devsite-prod
186 rm -rf $(BUILDDIR)/devsite-staging/images
187 cp -r $(BUILDDIR)/devsite-prod/_images $(BUILDDIR)/devsite-prod/images
186 @echo 188 @echo
187 @echo "Build finished. The HTML pages are in $(BUILDDIR)/devsite-prod." 189 @echo "Build finished. The HTML pages are in $(BUILDDIR)/devsite-prod."
188 190
191 devsite-staging:
192 $(SPHINXBUILD) -b devsite -D devsite_foldername=$(USER) -D devsite_produ ction_mode=1 $(ALLSPHINXOPTS) $(BUILDDIR)/devsite-staging
193 rm -rf $(BUILDDIR)/devsite-staging/images
194 cp -r $(BUILDDIR)/devsite-staging/_images $(BUILDDIR)/devsite-staging/im ages
195 @echo
196 @echo "Build finished. The HTML pages are in $(BUILDDIR)/devsite-staging ."
197
189 devsite: 198 devsite:
190 $(SPHINXBUILD) -b devsite -D devsite_production_mode=0 $(ALLSPHINXOPTS) $(BUILDDIR)/devsite 199 $(SPHINXBUILD) -b devsite -D devsite_production_mode=0 $(ALLSPHINXOPTS) $(BUILDDIR)/devsite
191 @echo 200 @echo
192 @echo "Build finished. The HTML pages are in $(BUILDDIR)/devsite." 201 @echo "Build finished. The HTML pages are in $(BUILDDIR)/devsite."
193 202
194 serve: 203 serve:
195 cd _build/devsite && python -m SimpleHTTPServer 8009 204 cd _build/devsite && python -m SimpleHTTPServer 8009
OLDNEW
« no previous file with comments | « no previous file | native_client_sdk/src/doc/README » ('j') | native_client_sdk/src/doc/devguide/coding/message-system.rst » ('J')

Powered by Google App Engine
This is Rietveld 408576698