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

Side by Side Diff: docs/Makefile.standalone

Issue 1574883002: add doxypypy and py_filter so this will turn google style (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: changes suggested by stichnot Created 4 years, 10 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
« no previous file with comments | « docs/Doxyfile ('k') | docs/fdoxypypy.py » ('j') | docs/py_filter » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 .PHONY: all 1 .PHONY: all
2 2
3 all: 3 DOXYPYPY := $(shell which doxypypy)
4
5 ifeq ("$(DOXYPYPY)", "")
6 all::
Jim Stichnoth 2016/01/27 02:12:30 A normal "make docs" run produces pages and pages
rkotlerimgtec 2016/01/27 02:36:07 Done.
7 » $(info "To get best Doxgen output for Python code")
Jim Stichnoth 2016/01/27 02:12:30 Doxygen
Jim Stichnoth 2016/01/27 02:12:30 You should probably remove the double-quotes in th
rkotlerimgtec 2016/01/27 02:36:07 Done.
rkotlerimgtec 2016/01/27 02:36:07 Done.
rkotlerimgtec 2016/01/27 02:36:07 Done.
8 » $(info "Python doxypypy package should to be installed, e.g.")
Jim Stichnoth 2016/01/27 02:12:30 should be
rkotlerimgtec 2016/01/27 02:36:07 Done.
9 » $(info "'sudo pip install doxypypy'")
10 » $(info " ... or ...")
11 » $(info "'easy_install doxypypy'")
12 » $(info "see https://github.com/Feneric/doxypypy ")
Jim Stichnoth 2016/01/27 02:12:30 maybe drop the last space before the closing quote
rkotlerimgtec 2016/01/27 02:36:07 Done.
13 endif
14 all::
4 mkdir -p ../build 15 mkdir -p ../build
5 doxygen Doxyfile 16 doxygen Doxyfile
6 @echo See file://`pwd`/../build/docs/html/index.html 17 @echo See file://`pwd`/../build/docs/html/index.html
OLDNEW
« no previous file with comments | « docs/Doxyfile ('k') | docs/fdoxypypy.py » ('j') | docs/py_filter » ('J')

Powered by Google App Engine
This is Rietveld 408576698