diff options
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/ |