Regenerated.
This commit is contained in:
parent
fb46afd05f
commit
bcf985cb67
@ -14,7 +14,7 @@
|
||||
|
||||
@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
|
||||
#
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
@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
|
||||
#
|
||||
|
@ -215,40 +215,19 @@ target_cpu = @target_cpu@
|
||||
target_os = @target_os@
|
||||
target_vendor = @target_vendor@
|
||||
docdir = $(LIBTIFF_DOCDIR)/html/man
|
||||
MANSRCDIR = $(top_builddir)/man
|
||||
MANSRCDIR = $(top_srcdir)/man
|
||||
GROFF = groff -Thtml -mandoc
|
||||
indexfile = index.html
|
||||
docfiles = \
|
||||
fax2ps.1.html \
|
||||
fax2tiff.1.html \
|
||||
gif2tiff.1.html \
|
||||
index.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 \
|
||||
TIFFClose.3tiff.html \
|
||||
tiffcmp.1.html \
|
||||
TIFFcodec.3tiff.html \
|
||||
TIFFcolor.3tiff.html \
|
||||
tiffcp.1.html \
|
||||
TIFFDataWidth.3tiff.html \
|
||||
tiffdither.1.html \
|
||||
tiffdump.1.html \
|
||||
TIFFError.3tiff.html \
|
||||
TIFFFlush.3tiff.html \
|
||||
TIFFGetField.3tiff.html \
|
||||
tiffgt.1.html \
|
||||
tiffinfo.1.html \
|
||||
tiffmedian.1.html \
|
||||
TIFFmemory.3tiff.html \
|
||||
TIFFOpen.3tiff.html \
|
||||
TIFFPrintDirectory.3tiff.html \
|
||||
@ -266,11 +245,8 @@ docfiles = \
|
||||
TIFFRGBAImage.3tiff.html \
|
||||
TIFFSetDirectory.3tiff.html \
|
||||
TIFFSetField.3tiff.html \
|
||||
tiffset.1.html \
|
||||
TIFFsize.3tiff.html \
|
||||
tiffsplit.1.html \
|
||||
TIFFstrip.3tiff.html \
|
||||
tiffsv.1.html \
|
||||
TIFFswab.3tiff.html \
|
||||
TIFFtile.3tiff.html \
|
||||
TIFFWarning.3tiff.html \
|
||||
@ -280,11 +256,36 @@ docfiles = \
|
||||
TIFFWriteRawStrip.3tiff.html \
|
||||
TIFFWriteRawTile.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>'
|
||||
INDEXEND = '</ul></BODY></HTML>'
|
||||
manpages := $(docfiles:.html=)
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
@ -465,17 +466,19 @@ uninstall-am: uninstall-dist_docDATA uninstall-info-am
|
||||
uninstall-info-am
|
||||
|
||||
|
||||
html:
|
||||
${ECHO} ${INDEXSTART} > index.html
|
||||
for i in ${MANSRCDIR}/*.3tiff; do \
|
||||
${GROFF} $$i > `basename $$i`.html; \
|
||||
${ECHO} '<li><A HREF='`basename $$i`'.html>'`basename $$i`'</a>' >> index.html; \
|
||||
.PHONY: index
|
||||
index: $(docfiles)
|
||||
${ECHO} ${INDEXSTART} > $(indexfile)
|
||||
for i in $^; do \
|
||||
${ECHO} '<li><A HREF='$$i'>'$$i'</a>' >> $(indexfile); \
|
||||
done
|
||||
for i in ${MANSRCDIR}/*.1; do \
|
||||
${GROFF} $$i > `basename $$i`.html; \
|
||||
${ECHO} '<li><A HREF='`basename $$i`'.html>'`basename $$i`'</a>' >> index.html; \
|
||||
${ECHO} ${INDEXEND} >> $(indexfile)
|
||||
|
||||
.PHONY: html
|
||||
html: index
|
||||
for i in $(manpages); do \
|
||||
${GROFF} $(MANSRCDIR)/$$i > $$i.html; \
|
||||
done
|
||||
${ECHO} ${INDEXEND} >> index.html
|
||||
# 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.
|
||||
.NOEXPORT:
|
||||
|
@ -62,7 +62,8 @@ build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
target_triplet = @target@
|
||||
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
|
||||
am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
|
||||
$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
|
||||
@ -78,7 +79,7 @@ man1dir = $(mandir)/man1
|
||||
am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man3dir)"
|
||||
man3dir = $(mandir)/man3
|
||||
NROFF = nroff
|
||||
MANS = $(man_MANS)
|
||||
MANS = $(dist_man1_MANS) $(dist_man3_MANS)
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AMDEP_FALSE = @AMDEP_FALSE@
|
||||
@ -208,12 +209,11 @@ target_alias = @target_alias@
|
||||
target_cpu = @target_cpu@
|
||||
target_os = @target_os@
|
||||
target_vendor = @target_vendor@
|
||||
man_MANS = \
|
||||
dist_man1_MANS = \
|
||||
bmp2tiff.1 \
|
||||
fax2ps.1 \
|
||||
fax2tiff.1 \
|
||||
gif2tiff.1 \
|
||||
libtiff.3tiff \
|
||||
pal2rgb.1 \
|
||||
ppm2tiff.1 \
|
||||
ras2tiff.1 \
|
||||
@ -225,8 +225,6 @@ man_MANS = \
|
||||
tiff2pdf.1 \
|
||||
tiff2ps.1 \
|
||||
tiff2rgba.1 \
|
||||
TIFFbuffer.3tiff \
|
||||
TIFFClose.3tiff \
|
||||
tiffcmp.1 \
|
||||
tiffcp.1 \
|
||||
tiffdither.1 \
|
||||
@ -236,7 +234,12 @@ man_MANS = \
|
||||
tiffmedian.1 \
|
||||
tiffset.1 \
|
||||
tiffsplit.1 \
|
||||
tiffsv.1 \
|
||||
tiffsv.1
|
||||
|
||||
dist_man3_MANS = \
|
||||
libtiff.3tiff \
|
||||
TIFFbuffer.3tiff \
|
||||
TIFFClose.3tiff \
|
||||
TIFFcodec.3tiff \
|
||||
TIFFcolor.3tiff \
|
||||
TIFFDataWidth.3tiff \
|
||||
@ -273,7 +276,6 @@ man_MANS = \
|
||||
TIFFWriteScanline.3tiff \
|
||||
TIFFWriteTile.3tiff
|
||||
|
||||
EXTRA_DIST = $(man_MANS)
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
|
Loading…
Reference in New Issue
Block a user