1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/doc/doxygen/Makefile
Oleg Hahm 72bc12e146 doxygen: add make targets to build man and latex
HTML will be build per default.
2015-07-20 19:30:30 +02:00

19 lines
409 B
Makefile

.PHONY: doc
doc: html
# by marking html as phony we force make to re-run Doxygen even if the directory exists.
.PHONY: html
html:
( cat riot.doxyfile ; echo "GENERATE_HTML = yes" ) | doxygen -
.PHONY: man
man:
( cat riot.doxyfile ; echo "GENERATE_MAN = yes" ) | doxygen -
.PHONY:
latex:
( cat riot.doxyfile ; echo "GENERATE_LATEX= yes" ) | doxygen -
clean:
-@rm -rf latex man html doxygen_objdb_*.tmp