blob: c655e0c09b89aa40f45c3287264ed6d6566225c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
HEADERS := $(wildcard ../include/android/*.h)
all: html website
html: $(HEADERS) Doxyfile
mkdir -p html
doxygen
website: $(HEADERS) Doxyfile header.html
mkdir -p website
HTML_HEADER=header.html HTML_FOOTER=footer.html HTML_OUTPUT=website doxygen
rm -f website/index.html
|