Added support for generating Doxygen source documentation.
This commit is contained in:
parent
f6f4a46cf5
commit
5a9796940c
3 changed files with 1416 additions and 5 deletions
9
.gitignore
vendored
9
.gitignore
vendored
|
|
@ -4,6 +4,8 @@
|
||||||
*.la
|
*.la
|
||||||
*.lo
|
*.lo
|
||||||
*.o
|
*.o
|
||||||
|
*.tar.bz2
|
||||||
|
*.tar.gz
|
||||||
*~
|
*~
|
||||||
.deps/
|
.deps/
|
||||||
.libs/
|
.libs/
|
||||||
|
|
@ -14,6 +16,7 @@
|
||||||
/AUTHORS
|
/AUTHORS
|
||||||
/COPYING
|
/COPYING
|
||||||
/ChangeLog
|
/ChangeLog
|
||||||
|
/Doxyfile.gen
|
||||||
/Makefile
|
/Makefile
|
||||||
/Makefile.in
|
/Makefile.in
|
||||||
/RegressionTests
|
/RegressionTests
|
||||||
|
|
@ -31,6 +34,10 @@
|
||||||
/configure
|
/configure
|
||||||
/configure.in
|
/configure.in
|
||||||
/depcomp
|
/depcomp
|
||||||
|
/doc/Doxyfile.bak
|
||||||
|
/doc/Doxyfile.gen
|
||||||
|
/doc/html
|
||||||
|
/doc/latex
|
||||||
/elc-stamp
|
/elc-stamp
|
||||||
/elisp-comp
|
/elisp-comp
|
||||||
/install-sh
|
/install-sh
|
||||||
|
|
@ -71,5 +78,3 @@ ltmain.sh
|
||||||
missing
|
missing
|
||||||
stamp-h1
|
stamp-h1
|
||||||
texinfo.tex
|
texinfo.tex
|
||||||
*.tar.gz
|
|
||||||
*.tar.bz2
|
|
||||||
|
|
|
||||||
|
|
@ -263,12 +263,12 @@ DISTCLEANFILES += Doxyfile.gen
|
||||||
|
|
||||||
alldocs: doc/ledger.info doc/ledger.pdf doxygen-docs
|
alldocs: doc/ledger.info doc/ledger.pdf doxygen-docs
|
||||||
|
|
||||||
$(top_builddir)/doc/Doxyfile.gen: $(srcdir)/doc/Doxyfile
|
$(top_builddir)/Doxyfile.gen: $(srcdir)/doc/Doxyfile
|
||||||
cat $(srcdir)/doc/Doxyfile \
|
cat $(srcdir)/doc/Doxyfile \
|
||||||
| sed "s/%srcdir%/$(ESC_srcdir)/g" \
|
| sed "s/%srcdir%/$(ESC_srcdir)/g" \
|
||||||
| sed "s/%builddir%/$(ESC_builddir)/g" > $@
|
| sed "s/%builddir%/$(ESC_builddir)/g" > $@
|
||||||
|
|
||||||
doxygen-docs: $(top_builddir)/doc/Doxyfile.gen
|
doxygen: $(top_builddir)/Doxyfile.gen
|
||||||
doxygen $(top_builddir)/doc/Doxyfile.gen
|
doxygen $(top_builddir)/Doxyfile.gen
|
||||||
|
|
||||||
# Makefile.am ends here
|
# Makefile.am ends here
|
||||||
|
|
|
||||||
1406
doc/Doxyfile
Normal file
1406
doc/Doxyfile
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue