platform_frameworks_native/docs/Makefile
smain@google.com 20e2095c7b update NDK doxygen templates to create DevSite-style HTML.
Previously, we had doxygen create .jd files with some syntax that
was parsed by the DocLava build tools when creating the final HTML
files for the website. But now that we're publishing these docs through
Piper, we don't need to run them through DocLava anymore. So with this
change, we now create .html files that then need to be copied to
google3/googledata/devsite/site-android/en/ndk/
where they can be immediately published via devsite once merged.
bug: 29943712

Change-Id: I8af5555f802e8c0122378bd504ad4308ff9aad56
2016-07-08 00:47:18 +00:00

12 lines
279 B
Makefile

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