Regenerated.

This commit is contained in:
Andrey Kiselev 2005-03-11 15:47:31 +00:00
parent fb46afd05f
commit bcf985cb67
4 changed files with 52 additions and 47 deletions

View File

@ -14,7 +14,7 @@
@SET_MAKE@ @SET_MAKE@
# $Id: Makefile.in,v 1.19 2005-03-08 19:16:14 dron Exp $ # $Id: Makefile.in,v 1.20 2005-03-11 15:47:31 dron Exp $
# #
# Tag Image File Format (TIFF) Software # Tag Image File Format (TIFF) Software
# #

View File

@ -14,7 +14,7 @@
@SET_MAKE@ @SET_MAKE@
# $Id: Makefile.in,v 1.33 2005-03-08 19:16:14 dron Exp $ # $Id: Makefile.in,v 1.34 2005-03-11 15:47:31 dron Exp $
# #
# Tag Image File Format (TIFF) Software # Tag Image File Format (TIFF) Software
# #

View File

@ -215,40 +215,19 @@ target_cpu = @target_cpu@
target_os = @target_os@ target_os = @target_os@
target_vendor = @target_vendor@ target_vendor = @target_vendor@
docdir = $(LIBTIFF_DOCDIR)/html/man docdir = $(LIBTIFF_DOCDIR)/html/man
MANSRCDIR = $(top_builddir)/man MANSRCDIR = $(top_srcdir)/man
GROFF = groff -Thtml -mandoc GROFF = groff -Thtml -mandoc
indexfile = index.html
docfiles = \ docfiles = \
fax2ps.1.html \
fax2tiff.1.html \
gif2tiff.1.html \
index.html \
libtiff.3tiff.html \ libtiff.3tiff.html \
pal2rgb.1.html \
ppm2tiff.1.html \
ras2tiff.1.html \
raw2tiff.1.html \
rgb2ycbcr.1.html \
sgi2tiff.1.html \
thumbnail.1.html \
tiff2bw.1.html \
tiff2pdf.1.html \
tiff2ps.1.html \
tiff2rgba.1.html \
TIFFbuffer.3tiff.html \ TIFFbuffer.3tiff.html \
TIFFClose.3tiff.html \ TIFFClose.3tiff.html \
tiffcmp.1.html \
TIFFcodec.3tiff.html \ TIFFcodec.3tiff.html \
TIFFcolor.3tiff.html \ TIFFcolor.3tiff.html \
tiffcp.1.html \
TIFFDataWidth.3tiff.html \ TIFFDataWidth.3tiff.html \
tiffdither.1.html \
tiffdump.1.html \
TIFFError.3tiff.html \ TIFFError.3tiff.html \
TIFFFlush.3tiff.html \ TIFFFlush.3tiff.html \
TIFFGetField.3tiff.html \ TIFFGetField.3tiff.html \
tiffgt.1.html \
tiffinfo.1.html \
tiffmedian.1.html \
TIFFmemory.3tiff.html \ TIFFmemory.3tiff.html \
TIFFOpen.3tiff.html \ TIFFOpen.3tiff.html \
TIFFPrintDirectory.3tiff.html \ TIFFPrintDirectory.3tiff.html \
@ -266,11 +245,8 @@ docfiles = \
TIFFRGBAImage.3tiff.html \ TIFFRGBAImage.3tiff.html \
TIFFSetDirectory.3tiff.html \ TIFFSetDirectory.3tiff.html \
TIFFSetField.3tiff.html \ TIFFSetField.3tiff.html \
tiffset.1.html \
TIFFsize.3tiff.html \ TIFFsize.3tiff.html \
tiffsplit.1.html \
TIFFstrip.3tiff.html \ TIFFstrip.3tiff.html \
tiffsv.1.html \
TIFFswab.3tiff.html \ TIFFswab.3tiff.html \
TIFFtile.3tiff.html \ TIFFtile.3tiff.html \
TIFFWarning.3tiff.html \ TIFFWarning.3tiff.html \
@ -280,11 +256,36 @@ docfiles = \
TIFFWriteRawStrip.3tiff.html \ TIFFWriteRawStrip.3tiff.html \
TIFFWriteRawTile.3tiff.html \ TIFFWriteRawTile.3tiff.html \
TIFFWriteScanline.3tiff.html \ TIFFWriteScanline.3tiff.html \
TIFFWriteTile.3tiff.html TIFFWriteTile.3tiff.html \
fax2ps.1.html \
fax2tiff.1.html \
gif2tiff.1.html \
pal2rgb.1.html \
ppm2tiff.1.html \
ras2tiff.1.html \
raw2tiff.1.html \
rgb2ycbcr.1.html \
sgi2tiff.1.html \
thumbnail.1.html \
tiff2bw.1.html \
tiff2pdf.1.html \
tiff2ps.1.html \
tiff2rgba.1.html \
tiffcmp.1.html \
tiffcp.1.html \
tiffdither.1.html \
tiffdump.1.html \
tiffgt.1.html \
tiffinfo.1.html \
tiffmedian.1.html \
tiffset.1.html \
tiffsplit.1.html \
tiffsv.1.html
dist_doc_DATA = $(docfiles) dist_doc_DATA = $(indexfile) $(docfiles)
INDEXSTART = '<HTML><HEAD><TITLE>Libtiff HTML manpage index</TITLE></HEAD><BODY BGCOLOR=white><ul><H2>Man Pages</h2><p>' INDEXSTART = '<HTML><HEAD><TITLE>Libtiff HTML manpage index</TITLE></HEAD><BODY BGCOLOR=white><ul><H2>Man Pages</h2><p>'
INDEXEND = '</ul></BODY></HTML>' INDEXEND = '</ul></BODY></HTML>'
manpages := $(docfiles:.html=)
all: all-am all: all-am
.SUFFIXES: .SUFFIXES:
@ -465,17 +466,19 @@ uninstall-am: uninstall-dist_docDATA uninstall-info-am
uninstall-info-am uninstall-info-am
html: .PHONY: index
${ECHO} ${INDEXSTART} > index.html index: $(docfiles)
for i in ${MANSRCDIR}/*.3tiff; do \ ${ECHO} ${INDEXSTART} > $(indexfile)
${GROFF} $$i > `basename $$i`.html; \ for i in $^; do \
${ECHO} '<li><A HREF='`basename $$i`'.html>'`basename $$i`'</a>' >> index.html; \ ${ECHO} '<li><A HREF='$$i'>'$$i'</a>' >> $(indexfile); \
done done
for i in ${MANSRCDIR}/*.1; do \ ${ECHO} ${INDEXEND} >> $(indexfile)
${GROFF} $$i > `basename $$i`.html; \
${ECHO} '<li><A HREF='`basename $$i`'.html>'`basename $$i`'</a>' >> index.html; \ .PHONY: html
html: index
for i in $(manpages); do \
${GROFF} $(MANSRCDIR)/$$i > $$i.html; \
done done
${ECHO} ${INDEXEND} >> index.html
# Tell versions [3.59,3.63) of GNU make to not export all variables. # Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded. # Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT: .NOEXPORT:

View File

@ -62,7 +62,8 @@ build_triplet = @build@
host_triplet = @host@ host_triplet = @host@
target_triplet = @target@ target_triplet = @target@
subdir = man subdir = man
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in DIST_COMMON = $(dist_man1_MANS) $(dist_man3_MANS) \
$(srcdir)/Makefile.am $(srcdir)/Makefile.in
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \ am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
@ -78,7 +79,7 @@ man1dir = $(mandir)/man1
am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man3dir)" am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man3dir)"
man3dir = $(mandir)/man3 man3dir = $(mandir)/man3
NROFF = nroff NROFF = nroff
MANS = $(man_MANS) MANS = $(dist_man1_MANS) $(dist_man3_MANS)
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@ ACLOCAL = @ACLOCAL@
AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_FALSE = @AMDEP_FALSE@
@ -208,12 +209,11 @@ target_alias = @target_alias@
target_cpu = @target_cpu@ target_cpu = @target_cpu@
target_os = @target_os@ target_os = @target_os@
target_vendor = @target_vendor@ target_vendor = @target_vendor@
man_MANS = \ dist_man1_MANS = \
bmp2tiff.1 \ bmp2tiff.1 \
fax2ps.1 \ fax2ps.1 \
fax2tiff.1 \ fax2tiff.1 \
gif2tiff.1 \ gif2tiff.1 \
libtiff.3tiff \
pal2rgb.1 \ pal2rgb.1 \
ppm2tiff.1 \ ppm2tiff.1 \
ras2tiff.1 \ ras2tiff.1 \
@ -225,8 +225,6 @@ man_MANS = \
tiff2pdf.1 \ tiff2pdf.1 \
tiff2ps.1 \ tiff2ps.1 \
tiff2rgba.1 \ tiff2rgba.1 \
TIFFbuffer.3tiff \
TIFFClose.3tiff \
tiffcmp.1 \ tiffcmp.1 \
tiffcp.1 \ tiffcp.1 \
tiffdither.1 \ tiffdither.1 \
@ -236,7 +234,12 @@ man_MANS = \
tiffmedian.1 \ tiffmedian.1 \
tiffset.1 \ tiffset.1 \
tiffsplit.1 \ tiffsplit.1 \
tiffsv.1 \ tiffsv.1
dist_man3_MANS = \
libtiff.3tiff \
TIFFbuffer.3tiff \
TIFFClose.3tiff \
TIFFcodec.3tiff \ TIFFcodec.3tiff \
TIFFcolor.3tiff \ TIFFcolor.3tiff \
TIFFDataWidth.3tiff \ TIFFDataWidth.3tiff \
@ -273,7 +276,6 @@ man_MANS = \
TIFFWriteScanline.3tiff \ TIFFWriteScanline.3tiff \
TIFFWriteTile.3tiff TIFFWriteTile.3tiff
EXTRA_DIST = $(man_MANS)
all: all-am all: all-am
.SUFFIXES: .SUFFIXES: