1 # Tag Image File Format (TIFF) Software
3 # Copyright (C) 2004, Andrey Kiselev <dron@ak4719.spb.edu>
5 # Permission to use, copy, modify, distribute, and sell this software and
6 # its documentation for any purpose is hereby granted without fee, provided
7 # that (i) the above copyright notices and this permission notice appear in
8 # all copies of the software and related documentation, and (ii) the names of
9 # Sam Leffler and Silicon Graphics may not be used in any advertising or
10 # publicity relating to the software without the specific, prior written
11 # permission of Sam Leffler and Silicon Graphics.
13 # THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
14 # EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
15 # WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
17 # IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
18 # ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
19 # OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
20 # WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
21 # LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
24 # Process this file with automake to produce Makefile.in.
26 docdir = $(LIBTIFF_DOCDIR)/html/man
27 MANSRCDIR = $(top_srcdir)/man
28 HTMLMANDIR = $(top_srcdir)/html/man
30 GROFF = groff -Thtml -mandoc
33 indexfile = index.html
36 TIFFbuffer.3tiff.html \
37 TIFFClose.3tiff.html \
38 TIFFcodec.3tiff.html \
39 TIFFcolor.3tiff.html \
40 TIFFDataWidth.3tiff.html \
41 TIFFError.3tiff.html \
42 TIFFFieldDataType.3tiff.html \
43 TIFFFieldName.3tiff.html \
44 TIFFFieldPassCount.3tiff.html \
45 TIFFFieldReadCount.3tiff.html \
46 TIFFFieldTag.3tiff.html \
47 TIFFFieldWriteCount.3tiff.html \
48 TIFFFlush.3tiff.html \
49 TIFFGetField.3tiff.html \
50 TIFFmemory.3tiff.html \
52 TIFFPrintDirectory.3tiff.html \
53 TIFFquery.3tiff.html \
54 TIFFReadDirectory.3tiff.html \
55 TIFFReadEncodedStrip.3tiff.html \
56 TIFFReadEncodedTile.3tiff.html \
57 TIFFReadRawStrip.3tiff.html \
58 TIFFReadRawTile.3tiff.html \
59 TIFFReadRGBAImage.3tiff.html \
60 TIFFReadRGBAStrip.3tiff.html \
61 TIFFReadRGBATile.3tiff.html \
62 TIFFReadScanline.3tiff.html \
63 TIFFReadTile.3tiff.html \
64 TIFFRGBAImage.3tiff.html \
65 TIFFSetDirectory.3tiff.html \
66 TIFFSetField.3tiff.html \
68 TIFFstrip.3tiff.html \
71 TIFFWarning.3tiff.html \
72 TIFFWriteDirectory.3tiff.html \
73 TIFFWriteEncodedStrip.3tiff.html \
74 TIFFWriteEncodedTile.3tiff.html \
75 TIFFWriteRawStrip.3tiff.html \
76 TIFFWriteRawTile.3tiff.html \
77 TIFFWriteScanline.3tiff.html \
78 TIFFWriteTile.3tiff.html \
106 dist_doc_DATA = $(indexfile) $(docfiles)
108 INDEXSTART = '<HTML><HEAD><TITLE>Libtiff HTML manpage index</TITLE></HEAD><BODY BGCOLOR=white><ul><H2>Man Pages</h2><p>'
109 INDEXEND = '</ul></BODY></HTML>'
113 ${ECHO} ${INDEXSTART} > $(indexfile)
114 for i in $(docfiles); do \
115 ${ECHO} '<li><A HREF='$$i'>'$$i'</a>' >> $(indexfile); \
117 ${ECHO} ${INDEXEND} >> $(indexfile)
119 manpages = $(docfiles:.html=)
123 for i in $(manpages); do \
124 ${GROFF} $(MANSRCDIR)/$$i > $(HTMLMANDIR)/$$i.html; \