Files
mruby-mruby/Makefile.doc
T
2019-08-18 13:59:29 +09:00

16 lines
307 B
Makefile

SRCS=$(shell find src -name '*.c')
HEADERS=$(shell find include -name '*.h')
MDDOCS=$(shell find doc -name '*.md')
doxygen : Doxyfile $(SRCS) $(HEADERS) $(MDDOCS)
doxygen Doxyfile
docs : doxygen
docserver : docs
firefox doxygen/html/index.html
docsclean :
rm -r doxygen
.PHONY : docserver docsclean