diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2010-01-26 16:32:00 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2010-01-26 16:32:00 -0500 |
commit | 626788435d4a49eeea9fa2382f7ec554a0b92197 (patch) | |
tree | 384a9ec3b56051fdf8ed635b78ccb8f6776c03ab /doc | |
parent | b5af7f362e30b1bbde4eef4216385ae2b2ea1bee (diff) |
doc: clean-up generated html images
Generate images in /images as is the convention
Provide a base file name for images rather than process ID
Remove images directory when running make clean
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/.gitignore | 2 | ||||
-rw-r--r-- | doc/Makefile.am | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/doc/.gitignore b/doc/.gitignore index 5077603..84d7456 100644 --- a/doc/.gitignore +++ b/doc/.gitignore @@ -5,4 +5,4 @@ *.html.raw *.ps.raw *.txt.raw -grohtml-*.png +/images diff --git a/doc/Makefile.am b/doc/Makefile.am index b1fccc0..05fee05 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -33,6 +33,9 @@ doc_DATA = SMlib.txt SMlib.ps SMlib.html xsmp.txt xsmp.ps xsmp.html CLEANFILES = $(doc_DATA) MOSTLYCLEANFILES = index.* +mostlyclean-local: + @rm -fr images + # Pass version string as a troff string for substitution GROFF_DEFS = -dxV="$(PACKAGE_STRING)" @@ -51,6 +54,6 @@ SUFFIXES = .ms .ps .txt .html $< 2> index.$@.raw > $@ .ms.html: - $(AM_V_GEN) $(GROFF) -Thtml $(GROFF_FLAGS) $< 2> index.$@.raw > $@ + $(AM_V_GEN) $(GROFF) -Thtml -P-Dimages -P-I$*-image $(GROFF_FLAGS) $< 2> index.$@.raw > $@ endif BUILD_DOCS |