android13/frameworks/native/docs/Makefile

13 lines
279 B
Makefile
Raw Normal View History

2024-06-22 08:45:49 -04:00
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