Reed Kotler | 4cba1cb | 2016-01-07 08:45:13 -0800 | [diff] [blame] | 1 | .PHONY: all |
| 2 | |
Reed Kotler | 7910a26 | 2016-01-26 19:15:50 -0800 | [diff] [blame] | 3 | all:: |
Reed Kotler | 426a21e | 2016-01-07 21:42:36 -0800 | [diff] [blame] | 4 | mkdir -p ../build |
Reed Kotler | 4cba1cb | 2016-01-07 08:45:13 -0800 | [diff] [blame] | 5 | doxygen Doxyfile |
| 6 | @echo See file://`pwd`/../build/docs/html/index.html |
Reed Kotler | 7910a26 | 2016-01-26 19:15:50 -0800 | [diff] [blame] | 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 |