Add "make html" directive: it will build API documentation using Doxygen. (--enable-doc flag is required at configure time)

This commit is contained in:
Romuald Conty 2009-10-20 10:19:31 +00:00
parent 1a7103c4c4
commit 4a03864bea
3 changed files with 271 additions and 5 deletions

View file

@ -3,3 +3,15 @@ SUBDIRS = src
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libnfc.pc
EXTRA_DIST = Doxyfile
CLEANFILES = Doxygen.log
if DOC_ENABLED
clean-local:
rm -rf doc
html-am : Doxyfile
@DOXYGEN@ $(builddir)/Doxyfile
.PHONY: html
endif