Add "make html" directive: it will build API documentation using Doxygen. (--enable-doc flag is required at configure time)
This commit is contained in:
parent
1a7103c4c4
commit
4a03864bea
3 changed files with 271 additions and 5 deletions
12
Makefile.am
12
Makefile.am
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue