summaryrefslogtreecommitdiffstats
path: root/doc/doc.mk
blob: 58c299e3411a327a6ddad8627baa9e787af7dec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
ifeq ($(HAS_doxygen)|$(HAS_sphinx-build), yes|yes)
doc-doxygen:
	@cd doc && $(doxygen_BIN)
doc-html: doc-doxygen
	@cd doc && $(sphinx-build_BIN) $(SPHINXFLAGS) -b html . html
else
doc-html:
	$(error doxygen and sphinx must be installed)
endif
doc-clean:
	rm -rf doc/doxyxml doc/*.db doc/html

.PHONY: doc-doxygen doc-html doc-clean