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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « docs/Doxyfile ('k') | docs/py_filter » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: docs/Makefile.standalone
diff --git a/docs/Makefile.standalone b/docs/Makefile.standalone
index b1094aaa0bb474bad7736699af1e2296660bde9d..7e594539bfe5b20379da2f881d17d36ac6d60a13 100644
--- a/docs/Makefile.standalone
+++ b/docs/Makefile.standalone
@@ -1,6 +1,19 @@
.PHONY: all
-all:
+all::
mkdir -p ../build
doxygen Doxyfile
@echo See file://`pwd`/../build/docs/html/index.html
+
+DOXYPYPY := $(shell which doxypypy)
+
+ifeq ("$(DOXYPYPY)", "")
+all::
+ $(info Warning: ......................................)
+ $(info To get best Doxygen output for Python code, the)
+ $(info Python doxypypy package should be installed, e.g.)
+ $(info 'sudo pip install doxypypy')
+ $(info ... or ... )
+ $(info 'easy_install doxypypy')
+ $(info see https://github.com/Feneric/doxypypy)
+endif
« 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