Build API docs with doxygen. Add Tutorial to distribution tarball.
This commit is contained in:
parent
345d9c4a05
commit
d432879d83
@ -35,3 +35,5 @@ demo/isocat
|
|||||||
demo/isomodify
|
demo/isomodify
|
||||||
demo/isoms
|
demo/isoms
|
||||||
demo/isogrow
|
demo/isogrow
|
||||||
|
doc/html
|
||||||
|
doc/doxygen.conf
|
||||||
|
21
Makefile.am
21
Makefile.am
@ -138,7 +138,21 @@ test_test_SOURCES = \
|
|||||||
## ========================================================================= ##
|
## ========================================================================= ##
|
||||||
|
|
||||||
## Build documentation (You need Doxygen for this to work)
|
## Build documentation (You need Doxygen for this to work)
|
||||||
## TODO!!
|
|
||||||
|
docdir = $(DESTDIR)$(prefix)/share/doc/$(PACKAGE)-$(VERSION)
|
||||||
|
|
||||||
|
doc: doc/html
|
||||||
|
|
||||||
|
doc/html: doc/doxygen.conf
|
||||||
|
$(RM) -r doc/html; \
|
||||||
|
doxygen doc/doxygen.conf;
|
||||||
|
|
||||||
|
install-data-local:
|
||||||
|
$(mkinstalldirs) $(docdir)/html; \
|
||||||
|
$(INSTALL_DATA) doc/html/* $(docdir)/html;
|
||||||
|
|
||||||
|
uninstall-local:
|
||||||
|
rm -rf $(docdir)
|
||||||
|
|
||||||
## ========================================================================= ##
|
## ========================================================================= ##
|
||||||
|
|
||||||
@ -149,6 +163,8 @@ nodist_pkgconfig_DATA = \
|
|||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
libisofs-5.pc.in \
|
libisofs-5.pc.in \
|
||||||
version.h.in \
|
version.h.in \
|
||||||
|
doc/doxygen.conf.in \
|
||||||
|
doc/Tutorial \
|
||||||
README \
|
README \
|
||||||
AUTHORS \
|
AUTHORS \
|
||||||
COPYRIGHT \
|
COPYRIGHT \
|
||||||
@ -156,5 +172,6 @@ EXTRA_DIST = \
|
|||||||
NEWS \
|
NEWS \
|
||||||
INSTALL \
|
INSTALL \
|
||||||
TODO \
|
TODO \
|
||||||
ChangeLog
|
ChangeLog \
|
||||||
|
Roadmap
|
||||||
|
|
||||||
|
@ -142,6 +142,7 @@ fi
|
|||||||
|
|
||||||
AC_CONFIG_FILES([
|
AC_CONFIG_FILES([
|
||||||
Makefile
|
Makefile
|
||||||
|
doc/doxygen.conf
|
||||||
version.h
|
version.h
|
||||||
libisofs-5.pc
|
libisofs-5.pc
|
||||||
])
|
])
|
||||||
|
1298
doc/doxygen.conf.in
Normal file
1298
doc/doxygen.conf.in
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user