diff options
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 230949f..e5973c2 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -21,7 +21,7 @@ CLEANFILES += $(html_DATA) endif %.html : % - @GROFF@ -Thtml -man $< >$@ + @GROFF@ -Thtml -P -I$<. -man -t $< >$@ # # Doxygen processing (do not install or distribute) @@ -34,5 +34,9 @@ endif doxygen/ : Doxyfile @DOXYGEN@ $< +install-data-local: + @INSTALL@ sciteco.*.png $(DESTDIR)$(htmldir) + clean-local: + -rm -f sciteco.*.png -rm -rf doxygen/ |