Makefile 279 B

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