diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-02-25 05:23:27 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-02-25 05:23:27 +0100 |
commit | 1c4127666adfded4f7caf58fc30040cb235107d1 (patch) | |
tree | cc334f88239f90c6fb34a69251c6ab95cdbf8baa /doc/Makefile.am | |
parent | 18b1ac8cd1fe81af721ed903c23813f568630d9c (diff) | |
download | sciteco-1c4127666adfded4f7caf58fc30040cb235107d1.tar.gz |
integrate Doxygen into build system
* solely for generating developer docs
* disabled by default even if Doxygen is installed
* Doxygen comments are not used currently
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 10fb3ec..48ab9b8 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -3,3 +3,17 @@ include $(top_srcdir)/bootstrap.am man_MANS = sciteco.1 EXTRA_DIST = sciteco.1.in CLEANFILES = sciteco.1 + +# +# Doxygen processing (do not install or distribute) +# +if BUILD_DEVDOC +noinst_DATA = doxygen/ +endif + +.PHONY: doxygen/ +doxygen/ : Doxyfile + @DOXYGEN@ $< + +clean-local: + -rm -rf doxygen/ |