You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
279 B
13 lines
279 B
4 months ago
|
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
|