diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-03-07 16:45:33 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-03-16 18:07:32 +0100 |
commit | 8932214063950c285fe8cf02f9b6da42d86efa1a (patch) | |
tree | 985e05c7d901cf69399469f78d18757fea6a9f4d /doc/Makefile.am | |
parent | 433c0c22d655e5043c45995696646eda03b458c3 (diff) | |
download | sciteco-8932214063950c285fe8cf02f9b6da42d86efa1a.tar.gz |
wrote introduction, key translation and immedite editing sections for sciteco(7) manual
* images are generated by grohtml. they are not listed in the Automake rules but instead all
sciteco.*.png images are installed and cleaned
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/ |