blob: 96245070d6a36221b50400c324e00e1c08cd2b85 (
plain)
1
2
3
4
5
6
7
8
9
10
|
all:
doc: doxygen.conf
@doxygen doxygen.conf
@echo Documentation generated in $(shell pwd)/html
doxygen.conf: doxygen.conf.in
@regex_cmd@ -e "s,\@version\@,$(VERSION)," \
-e "s,\@basedir\@,`cd $(top_builddir) && pwd`," \
doxygen.conf.in > doxygen.conf
|