1.PHONY: all 2 3all:: 4 mkdir -p ../build 5 doxygen Doxyfile 6 @echo See file://`pwd`/../build/docs/html/index.html 7 8DOXYPYPY := $(shell which doxypypy) 9 10ifeq ("$(DOXYPYPY)", "") 11all:: 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) 19endif 20