Add doxygen support

This commit is contained in:
Yann Weber 2017-03-08 19:12:55 +01:00
commit defd1864d6
5 changed files with 2449 additions and 0 deletions

2407
docs/Doxyfile.in Normal file

File diff suppressed because it is too large Load diff

19
docs/Makefile.am Normal file
View file

@ -0,0 +1,19 @@
if HAVE_DOXYGEN
CLEANFILES = doxyfile.stamp
directory = $(top_srcdir)/docs/man/man3/
dist_man_MANS = $(directory)/man_page_1.3 $(directory)/man_page_2.3
$(directory)/man_page_1.3: doxyfile.stamp
$(directory)/man_page_2.3: doxyfile.stamp
doxyfile.stamp:
$(DOXYGEN) Doxyfile
echo Timestamp > doxyfile.stamp
all-local: doxyfile.stamp doc
doc: doxyfile.stamp
clean-local:
-rm -rf $(top_srcdir)/docs/html $(top_srcdir)/docs/man $(top_srcdir)/docs/doxygen_sqlite3.db
endif