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: left makefile in test state. Created 4 years, 11 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/py_filter » ('j') | no next file with comments »
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 all::
4 mkdir -p ../build 4 mkdir -p ../build
5 doxygen Doxyfile 5 doxygen Doxyfile
6 @echo See file://`pwd`/../build/docs/html/index.html 6 @echo See file://`pwd`/../build/docs/html/index.html
7
8 DOXYPYPY := $(shell which doxypypy)
9
10 ifeq ("$(DOXYPYPY)", "")
11 all::
12 $(info Warning: ......................................)
13 $(info To get best Doxygen output for Python code, the)
14 $(info Python doxypypy package should be installed, e.g.)
15 $(info 'sudo pip install doxypypy')
16 $(info ... or ... )
17 $(info 'easy_install doxypypy')
18 $(info see https://github.com/Feneric/doxypypy)
19 endif
OLDNEW
« no previous file with comments | « docs/Doxyfile ('k') | docs/py_filter » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698