mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
16 lines
308 B
Makefile
16 lines
308 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 -rf doxygen
|
|
.PHONY : docserver docsclean
|