OLD | NEW |
---|---|
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 |
OLD | NEW |