Home | History | Annotate | Download | only in docs
      1 .PHONY: all
      2 
      3 all::
      4 	mkdir -p ../build
      5 	doxygen Doxyfile
      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
     20