*** empty log message ***
This commit is contained in:
parent
4b0496229e
commit
1f9504178e
@ -1,3 +1,7 @@
|
||||
2004-03-19 Andrey Kiselev <dron@remotesensing.org>
|
||||
|
||||
* {many}: The first attempt to switch to autotools.
|
||||
|
||||
2004-03-03 Andrey Kiselev <dron@remotesensing.org>
|
||||
|
||||
* libtiff/tif_open.c: Use dummy mmap/munmap functions in
|
||||
|
906
Makefile.in
906
Makefile.in
@ -1,13 +1,21 @@
|
||||
#! smake
|
||||
# $Header: /cvs/maptools/cvsroot/libtiff/Makefile.in,v 1.47 2003-12-31 09:12:50 dron Exp $
|
||||
# Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
|
||||
|
||||
# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
# $Id: Makefile.in,v 1.48 2004-03-19 17:27:57 dron Exp $
|
||||
#
|
||||
# @WARNING@
|
||||
# Tag Image File Format (TIFF) Software
|
||||
#
|
||||
# Tag Image File Format Library
|
||||
# Copyright (C) 2004, Andrey Kiselev <dron@remotesensing.org>
|
||||
#
|
||||
# Copyright (c) 1988-1997 Sam Leffler
|
||||
# Copyright (c) 1991-1997 Silicon Graphics, Inc.
|
||||
#
|
||||
# Permission to use, copy, modify, distribute, and sell this software and
|
||||
# its documentation for any purpose is hereby granted without fee, provided
|
||||
# that (i) the above copyright notices and this permission notice appear in
|
||||
@ -26,565 +34,343 @@
|
||||
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
||||
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
# OF THIS SOFTWARE.
|
||||
#
|
||||
|
||||
SRCDIR = @SRCDIR@
|
||||
|
||||
#
|
||||
# VERSION: @VERSION@
|
||||
# DATE: @DATE@
|
||||
# TARGET: @TARGET@
|
||||
# CCOMPILER: @CCOMPILER@
|
||||
#
|
||||
@SETMAKE@
|
||||
SHELL = @SCRIPT_SH@
|
||||
SCRIPT_SH = @SCRIPT_SH@
|
||||
NULL =
|
||||
ECHO = echo
|
||||
GENDIST = ${TOOLROOT}/usr/sbin/gendist
|
||||
INSTALL = @INSTALL@
|
||||
|
||||
all default:
|
||||
@if [ "@PORT@" = yes ]; then \
|
||||
${ECHO} "= "port; cd port; ${MAKE} -${MAKEFLAGS}; \
|
||||
else \
|
||||
true; \
|
||||
fi
|
||||
@${ECHO} "= "libtiff; cd libtiff; ${MAKE} -${MAKEFLAGS}
|
||||
@${ECHO} "= "tools; cd tools; ${MAKE} -${MAKEFLAGS}
|
||||
@${ECHO} "= "man; cd man; ${MAKE} -${MAKEFLAGS}
|
||||
|
||||
install:
|
||||
@${ECHO} "= "libtiff; cd libtiff; ${MAKE} install
|
||||
@${ECHO} "= "tools; cd tools; ${MAKE} install
|
||||
@${ECHO} "= "man; cd man; ${MAKE} install
|
||||
@if [ "@HTML@" = yes ]; then \
|
||||
${ECHO} "= "html; cd html; ${MAKE} install; \
|
||||
else \
|
||||
true; \
|
||||
fi
|
||||
|
||||
install-private: install
|
||||
@${ECHO} "= "libtiff; cd libtiff; ${MAKE} -${MAKEFLAGS} installPrivateHdrs
|
||||
|
||||
clean:
|
||||
@if [ "@PORT@" = yes ]; then \
|
||||
${ECHO} "= "port; cd port; ${MAKE} -${MAKEFLAGS} clean; \
|
||||
else \
|
||||
true; \
|
||||
fi
|
||||
@${ECHO} "= "libtiff; cd libtiff; ${MAKE} -${MAKEFLAGS} clean
|
||||
@${ECHO} "= "tools; cd tools; ${MAKE} -${MAKEFLAGS} clean
|
||||
@${ECHO} "= "man; cd man; ${MAKE} -${MAKEFLAGS} clean
|
||||
# -cd contrib/dbs; ${MAKE} -${MAKEFLAGS} clean
|
||||
# -cd contrib/dbs/xtiff; ${MAKE} -${MAKEFLAGS} clean
|
||||
|
||||
clobber distclean: clean
|
||||
rm -f Makefile libtiff/port.h config.log
|
||||
rm -f libtiff/Makefile
|
||||
rm -f tools/Makefile
|
||||
rm -f man/Makefile
|
||||
rm -f port/Makefile port/install.sh
|
||||
rm -f html/Makefile
|
||||
|
||||
#
|
||||
# The folllowing rule creates a binary distribution for IRIX.
|
||||
#
|
||||
installLink::
|
||||
if [ @DIR_LIB@ != /usr/lib ]; then \
|
||||
${INSTALL} -idb tiff.sw.tools -F /usr/lib \
|
||||
-lns @DIR_LIB@/libtiff.@DSOSUF@ -O libtiff.@DSOSUF@; \
|
||||
else \
|
||||
true; \
|
||||
fi
|
||||
product::
|
||||
test -d dist || mkdir dist
|
||||
rm -f dist/rawidb
|
||||
SRC=`pwd` RAWIDB=`pwd`/dist/rawidb ${MAKE} -${MAKEFLAGS} install installLink
|
||||
rm -f dist/idb
|
||||
sort -u +4 dist/rawidb > dist/idb
|
||||
${GENDIST} -v -dist dist -idb dist/idb \
|
||||
-sbase `pwd` -spec ${SRCDIR}/dist/tiff.spec
|
||||
|
||||
#
|
||||
# These rules are used to create the source distribution images
|
||||
#
|
||||
|
||||
HOST = sgi
|
||||
COMPRESS= gzip
|
||||
ZIPSUF = gz
|
||||
|
||||
TIFFFILES=\
|
||||
configure \
|
||||
config.guess \
|
||||
config.sub \
|
||||
config.site \
|
||||
Makefile.in \
|
||||
README \
|
||||
VERSION \
|
||||
RELEASE-DATE \
|
||||
COPYRIGHT \
|
||||
TODO \
|
||||
test_pics.sh \
|
||||
dist/tiff.spec \
|
||||
dist/newalpha \
|
||||
dist/newversion \
|
||||
libtiff/Makefile.in \
|
||||
libtiff/Makefile.lcc \
|
||||
libtiff/makefile.vc \
|
||||
libtiff/libtiff.def \
|
||||
libtiff/t4.h \
|
||||
libtiff/tiff.h \
|
||||
libtiff/tiffcomp.h \
|
||||
libtiff/tiffconf.h \
|
||||
libtiff/tiffio.h \
|
||||
libtiff/tiffiop.h \
|
||||
libtiff/uvcode.h \
|
||||
libtiff/mkg3states.c \
|
||||
libtiff/mkspans.c \
|
||||
libtiff/mkversion.c \
|
||||
libtiff/tif_acorn.c \
|
||||
libtiff/tif_apple.c \
|
||||
libtiff/tif_atari.c \
|
||||
libtiff/tif_aux.c \
|
||||
libtiff/tif_close.c \
|
||||
libtiff/tif_codec.c \
|
||||
libtiff/tif_compress.c \
|
||||
libtiff/tif_color.c \
|
||||
libtiff/tif_dir.h \
|
||||
libtiff/tif_dir.c \
|
||||
libtiff/tif_dirinfo.c \
|
||||
libtiff/tif_dirread.c \
|
||||
libtiff/tif_dirwrite.c \
|
||||
libtiff/tif_dumpmode.c \
|
||||
libtiff/tif_error.c \
|
||||
libtiff/tif_extension.c \
|
||||
libtiff/tif_fax3.c \
|
||||
libtiff/fax3sm_winnt.c \
|
||||
libtiff/tif_fax3.h \
|
||||
libtiff/tif_flush.c \
|
||||
libtiff/tif_getimage.c \
|
||||
libtiff/tif_jpeg.c \
|
||||
libtiff/tif_ojpeg.c \
|
||||
libtiff/tif_luv.c \
|
||||
libtiff/tif_lzw.c \
|
||||
libtiff/tif_msdos.c \
|
||||
libtiff/tif_next.c \
|
||||
libtiff/tif_open.c \
|
||||
libtiff/tif_packbits.c \
|
||||
libtiff/tif_pixarlog.c \
|
||||
libtiff/tif_predict.h \
|
||||
libtiff/tif_predict.c \
|
||||
libtiff/tif_print.c \
|
||||
libtiff/tif_read.c \
|
||||
libtiff/tif_strip.c \
|
||||
libtiff/tif_swab.c \
|
||||
libtiff/tif_thunder.c \
|
||||
libtiff/tif_tile.c \
|
||||
libtiff/tif_unix.c \
|
||||
libtiff/tif_version.c \
|
||||
libtiff/tiffvers.h \
|
||||
libtiff/tif_vms.c \
|
||||
libtiff/tif_warning.c \
|
||||
libtiff/tif_win3.c \
|
||||
libtiff/tif_win32.c \
|
||||
libtiff/tif_write.c \
|
||||
libtiff/tif_zip.c \
|
||||
port/Makefile.in \
|
||||
port/getopt.c \
|
||||
port/install.sh.in \
|
||||
port/irix/so_locations \
|
||||
port/strcasecmp.c \
|
||||
port/strtoul.c \
|
||||
tools/Makefile.in \
|
||||
tools/Makefile.vc \
|
||||
tools/Makefile.lcc \
|
||||
tools/fax2tiff.c \
|
||||
tools/fax2ps.c \
|
||||
tools/gif2tiff.c \
|
||||
tools/pal2rgb.c \
|
||||
tools/ppm2tiff.c \
|
||||
tools/ras2tiff.c \
|
||||
tools/rasterfile.h \
|
||||
tools/raw2tiff.c \
|
||||
tools/rgb2ycbcr.c \
|
||||
tools/sgi2tiff.c \
|
||||
tools/tiffgt.c \
|
||||
tools/sgisv.c \
|
||||
tools/thumbnail.c \
|
||||
tools/tiff2bw.c \
|
||||
tools/tiff2rgba.c \
|
||||
tools/tiff2pdf.c \
|
||||
tools/tiff2ps.c \
|
||||
tools/tiffcmp.c \
|
||||
tools/tiffcp.c \
|
||||
tools/tiffdither.c \
|
||||
tools/tiffdump.c \
|
||||
tools/tiffinfo.c \
|
||||
tools/tiffmedian.c \
|
||||
tools/tiffsplit.c \
|
||||
tools/tiffset.c \
|
||||
tools/ycbcr.c \
|
||||
man/Makefile.in \
|
||||
man/fax2tiff.1 \
|
||||
man/fax2ps.1 \
|
||||
man/gif2tiff.1 \
|
||||
man/pal2rgb.1 \
|
||||
man/ppm2tiff.1 \
|
||||
man/ras2tiff.1 \
|
||||
man/raw2tiff.1 \
|
||||
man/rgb2ycbcr.1 \
|
||||
man/sgi2tiff.1 \
|
||||
man/thumbnail.1 \
|
||||
man/tiff2bw.1 \
|
||||
man/tiff2rgba.1 \
|
||||
man/tiff2pdf.1 \
|
||||
man/tiff2ps.1 \
|
||||
man/tiffcmp.1 \
|
||||
man/tiffcp.1 \
|
||||
man/tiffdither.1 \
|
||||
man/tiffdump.1 \
|
||||
man/tiffgt.1 \
|
||||
man/tiffinfo.1 \
|
||||
man/tiffmedian.1 \
|
||||
man/tiffsplit.1 \
|
||||
man/tiffsv.1 \
|
||||
man/TIFFClose.3t \
|
||||
man/TIFFDataWidth.3t \
|
||||
man/TIFFError.3t \
|
||||
man/TIFFFlush.3t \
|
||||
man/TIFFGetField.3t \
|
||||
man/TIFFOpen.3t \
|
||||
man/TIFFPrintDirectory.3t \
|
||||
man/TIFFReadDirectory.3t \
|
||||
man/TIFFReadEncodedStrip.3t \
|
||||
man/TIFFReadEncodedTile.3t \
|
||||
man/TIFFReadRGBAImage.3t \
|
||||
man/TIFFReadRGBAStrip.3t \
|
||||
man/TIFFReadRGBATile.3t \
|
||||
man/TIFFReadRawStrip.3t \
|
||||
man/TIFFReadRawTile.3t \
|
||||
man/TIFFReadScanline.3t \
|
||||
man/TIFFReadTile.3t \
|
||||
man/TIFFRGBAImage.3t \
|
||||
man/TIFFSetDirectory.3t \
|
||||
man/TIFFSetField.3t \
|
||||
man/TIFFWarning.3t \
|
||||
man/TIFFWriteDirectory.3t \
|
||||
man/TIFFWriteEncodedStrip.3t \
|
||||
man/TIFFWriteEncodedTile.3t \
|
||||
man/TIFFWriteTile.3t \
|
||||
man/TIFFWriteRawStrip.3t \
|
||||
man/TIFFWriteRawTile.3t \
|
||||
man/TIFFWriteScanline.3t \
|
||||
man/libtiff.3t \
|
||||
man/TIFFbuffer.3t \
|
||||
man/TIFFcodec.3t \
|
||||
man/TIFFcolor.3t \
|
||||
man/TIFFmemory.3t \
|
||||
man/TIFFquery.3t \
|
||||
man/TIFFsize.3t \
|
||||
man/TIFFstrip.3t \
|
||||
man/TIFFswab.3t \
|
||||
man/TIFFtile.3t \
|
||||
html/images \
|
||||
html/images/back.gif \
|
||||
html/images/bali.jpg \
|
||||
html/images/cat.gif \
|
||||
html/images/cover.jpg \
|
||||
html/images/cramps.gif \
|
||||
html/images/dave.gif \
|
||||
html/images/info.gif \
|
||||
html/images/jello.jpg \
|
||||
html/images/jim.gif \
|
||||
html/images/note.gif \
|
||||
html/images/oxford.gif \
|
||||
html/images/quad.jpg \
|
||||
html/images/ring.gif \
|
||||
html/images/smallliz.jpg \
|
||||
html/images/strike.gif \
|
||||
html/images/warning.gif \
|
||||
html/Makefile.in \
|
||||
html/TIFFTechNote2.html \
|
||||
html/bugs.html \
|
||||
html/build.html \
|
||||
html/contrib.html \
|
||||
html/document.html \
|
||||
html/images.html \
|
||||
html/index.html \
|
||||
html/internals.html \
|
||||
html/intro.html \
|
||||
html/libtiff.html \
|
||||
html/misc.html \
|
||||
html/support.html \
|
||||
html/tools.html \
|
||||
html/v3.4beta007.html \
|
||||
html/v3.4beta016.html \
|
||||
html/v3.4beta018.html \
|
||||
html/v3.4beta024.html \
|
||||
html/v3.4beta028.html \
|
||||
html/v3.4beta029.html \
|
||||
html/v3.4beta031.html \
|
||||
html/v3.4beta032.html \
|
||||
html/v3.4beta033.html \
|
||||
html/v3.4beta034.html \
|
||||
html/v3.4beta035.html \
|
||||
html/v3.4beta036.html \
|
||||
html/v3.5.1.html \
|
||||
html/v3.5.2.html \
|
||||
html/v3.5.3.html \
|
||||
html/v3.5.4.html \
|
||||
html/v3.5.5.html \
|
||||
html/v3.5.6-beta.html \
|
||||
html/v3.5.7.html \
|
||||
html/v3.6.0.html \
|
||||
html/v3.6.1.html \
|
||||
html/man \
|
||||
html/man/TIFFClose.3t.html \
|
||||
html/man/TIFFDataWidth.3t.html \
|
||||
html/man/TIFFError.3t.html \
|
||||
html/man/TIFFFlush.3t.html \
|
||||
html/man/TIFFGetField.3t.html \
|
||||
html/man/TIFFOpen.3t.html \
|
||||
html/man/TIFFPrintDirectory.3t.html \
|
||||
html/man/TIFFRGBAImage.3t.html \
|
||||
html/man/TIFFReadDirectory.3t.html \
|
||||
html/man/TIFFReadEncodedStrip.3t.html \
|
||||
html/man/TIFFReadEncodedTile.3t.html \
|
||||
html/man/TIFFReadRGBAImage.3t.html \
|
||||
html/man/TIFFReadRGBAStrip.3t.html \
|
||||
html/man/TIFFReadRGBATile.3t.html \
|
||||
html/man/TIFFReadRawStrip.3t.html \
|
||||
html/man/TIFFReadRawTile.3t.html \
|
||||
html/man/TIFFReadScanline.3t.html \
|
||||
html/man/TIFFReadTile.3t.html \
|
||||
html/man/TIFFSetDirectory.3t.html \
|
||||
html/man/TIFFSetField.3t.html \
|
||||
html/man/TIFFWarning.3t.html \
|
||||
html/man/TIFFWriteDirectory.3t.html \
|
||||
html/man/TIFFWriteEncodedStrip.3t.html \
|
||||
html/man/TIFFWriteEncodedTile.3t.html \
|
||||
html/man/TIFFWriteRawStrip.3t.html \
|
||||
html/man/TIFFWriteRawTile.3t.html \
|
||||
html/man/TIFFWriteScanline.3t.html \
|
||||
html/man/TIFFbuffer.3t.html \
|
||||
html/man/TIFFcodec.3t.html \
|
||||
html/man/TIFFcolor.3t.html \
|
||||
html/man/TIFFmemory.3t.html \
|
||||
html/man/TIFFquery.3t.html \
|
||||
html/man/TIFFsize.3t.html \
|
||||
html/man/TIFFstrip.3t.html \
|
||||
html/man/TIFFswab.3t.html \
|
||||
html/man/TIFFtile.3t.html \
|
||||
html/man/fax2ps.1.html \
|
||||
html/man/fax2tiff.1.html \
|
||||
html/man/gif2tiff.1.html \
|
||||
html/man/libtiff.3t.html \
|
||||
html/man/pal2rgb.1.html \
|
||||
html/man/ppm2tiff.1.html \
|
||||
html/man/ras2tiff.1.html \
|
||||
html/man/raw2tiff.1.html \
|
||||
html/man/rgb2ycbcr.1.html \
|
||||
html/man/sgi2tiff.1.html \
|
||||
html/man/thumbnail.1.html \
|
||||
html/man/tiff2bw.1.html \
|
||||
html/man/tiff2pdf.1.html \
|
||||
html/man/tiff2ps.1.html \
|
||||
html/man/tiff2rgba.1.html \
|
||||
html/man/tiffcmp.1.html \
|
||||
html/man/tiffcp.1.html \
|
||||
html/man/tiffdither.1.html \
|
||||
html/man/tiffdump.1.html \
|
||||
html/man/tiffgt.1.html \
|
||||
html/man/tiffinfo.1.html \
|
||||
html/man/tiffmedian.1.html \
|
||||
html/man/tiffsplit.1.html \
|
||||
html/man/tiffsv.1.html \
|
||||
html/man/index.html \
|
||||
html/man/TIFFWriteTile.3t.html \
|
||||
${NULL}
|
||||
OTHERFILES=\
|
||||
${NULL}
|
||||
CONTRIBFILES=\
|
||||
contrib/dbs/README \
|
||||
contrib/dbs/Imakefile \
|
||||
contrib/dbs/tiff-bi.c \
|
||||
contrib/dbs/tiff-grayscale.c \
|
||||
contrib/dbs/tiff-palette.c \
|
||||
contrib/dbs/tiff-rgb.c \
|
||||
contrib/dbs/xtiff/README \
|
||||
contrib/dbs/xtiff/Imakefile \
|
||||
contrib/dbs/xtiff/patchlevel.h \
|
||||
contrib/dbs/xtiff/xtiff.c \
|
||||
contrib/dbs/xtiff/xtifficon.h \
|
||||
contrib/ras/README \
|
||||
contrib/ras/ras2tif.c \
|
||||
contrib/ras/tif2ras.c \
|
||||
contrib/ojpeg/README \
|
||||
contrib/ojpeg/jdhuff_add.c \
|
||||
contrib/vms/libtiff/makevms.com \
|
||||
contrib/vms/libtiff/tiff.opt \
|
||||
contrib/vms/libtiff/tiffshraxp.opt \
|
||||
contrib/vms/libtiff/tiffshrvax.opt \
|
||||
contrib/vms/libtiff/tiffvec.mar \
|
||||
contrib/vms/tools/makevms.com \
|
||||
contrib/tags/README \
|
||||
contrib/tags/Makefile.gcc \
|
||||
contrib/tags/Makefile.mpw \
|
||||
contrib/tags/listtif.c \
|
||||
contrib/tags/maketif.c \
|
||||
contrib/tags/xtif_dir.c \
|
||||
contrib/tags/xtiffio.h \
|
||||
contrib/tags/xtiffiop.h \
|
||||
contrib/mac-mpw/README \
|
||||
contrib/mac-mpw/BUILD.mpw \
|
||||
contrib/mac-mpw/libtiff.make \
|
||||
contrib/mac-mpw/mactrans.c \
|
||||
contrib/mac-mpw/port.make \
|
||||
contrib/mac-mpw/tools.make \
|
||||
contrib/mac-mpw/top.make \
|
||||
contrib/acorn/ReadMe \
|
||||
contrib/acorn/Makefile \
|
||||
contrib/acorn/SetVars \
|
||||
contrib/acorn/cleanlib \
|
||||
contrib/acorn/convert \
|
||||
contrib/acorn/install \
|
||||
contrib/win32/README \
|
||||
contrib/win32/dllshell.c \
|
||||
contrib/win32/libtiff.def \
|
||||
contrib/win_dib/README.tiff2dib \
|
||||
contrib/win_dib/Makefile.w95 \
|
||||
contrib/win_dib/tiff2dib.c \
|
||||
contrib/win_dib/README.Tiffile \
|
||||
contrib/win_dib/Tiffile.cpp \
|
||||
contrib/winnt/README \
|
||||
contrib/winnt/README.console \
|
||||
contrib/winnt/fax3sm.c \
|
||||
contrib/winnt/libtiff.def \
|
||||
contrib/winnt/libtiff.mak \
|
||||
contrib/winnt/libtiff.vcp \
|
||||
contrib/winnt/version.h \
|
||||
contrib/mac-cw/README \
|
||||
contrib/mac-cw/Makefile.script \
|
||||
contrib/mac-cw/mac_main.c \
|
||||
contrib/mac-cw/mac_main.h \
|
||||
contrib/mac-cw/metrowerks.note \
|
||||
contrib/mac-cw/mkg3_main.c \
|
||||
contrib/mac-cw/version.h \
|
||||
contrib/dosdjgpp/README \
|
||||
contrib/dosdjgpp/Makefile.lib \
|
||||
contrib/dosdjgpp/Makefile.tools \
|
||||
contrib/dosdjgpp/Makefile.top \
|
||||
contrib/dosdjgpp/conf.bat \
|
||||
contrib/dosdjgpp/port.h \
|
||||
contrib/mfs/README \
|
||||
contrib/mfs/mfs_file.c \
|
||||
contrib/pds/README \
|
||||
contrib/pds/tif_imageiter.c \
|
||||
contrib/pds/tif_imageiter.h \
|
||||
contrib/pds/tif_pdsdirread.c \
|
||||
contrib/pds/tif_pdsdirwrite.c \
|
||||
contrib/addtiffo/README \
|
||||
contrib/addtiffo/Makefile \
|
||||
contrib/addtiffo/Makefile.vc \
|
||||
contrib/addtiffo/addtiffo.c \
|
||||
contrib/addtiffo/tif_overview.c \
|
||||
contrib/addtiffo/tif_ovrcache.c \
|
||||
contrib/addtiffo/tif_ovrcache.h \
|
||||
contrib/iptcutil/Makefile \
|
||||
contrib/iptcutil/iptcutil.c \
|
||||
contrib/iptcutil/test.iptc \
|
||||
contrib/iptcutil/test.txt \
|
||||
${NULL}
|
||||
|
||||
DISTFILES=\
|
||||
${TIFFFILES} \
|
||||
dist/tiff.alpha \
|
||||
dist/tiff.version \
|
||||
${OTHERFILES} \
|
||||
${CONTRIBFILES} \
|
||||
${NULL}
|
||||
|
||||
CONFIG=\
|
||||
-with-CC=cc \
|
||||
-with-GCOPTS=" " \
|
||||
-with-JPEG=yes \
|
||||
-with-DIR_JPEG=../src/jpeg-5a \
|
||||
-with-ZIP=yes \
|
||||
-with-DIR_LIBGZ=../src/zlib \
|
||||
${NULL}
|
||||
|
||||
rcsclean:
|
||||
rcsclean ${TIFFFILES} && co ${TIFFFILES}
|
||||
|
||||
release:
|
||||
(cd ${SRCDIR}/dist; sh newversion)
|
||||
${MAKE} -${MAKEFLAGS} release.stamp
|
||||
(cd ${SRCDIR}/libtiff; ${MAKE} -${MAKEFLAGS} tiffvers.h)
|
||||
# ${SRCDIR}/configure ${CONFIG}
|
||||
# ${MAKE} -${MAKEFLAGS} product
|
||||
${MAKE} -${MAKEFLAGS} release.tar.zip
|
||||
# Process this file with automake to produce Makefile.in.
|
||||
|
||||
|
||||
# stamp relevant files according to current alpha
|
||||
release.stamp:
|
||||
date "+%m/%d/%Y" > RELEASE-DATE
|
||||
SHELL = @SHELL@
|
||||
|
||||
#diffs since last release
|
||||
releasediff:
|
||||
-@for i in ${TIFFFILES}; do \
|
||||
cvs diff -D`cat RELEASE-DATE` ${SRCDIR}/$$i; \
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
prefix = @prefix@
|
||||
exec_prefix = @exec_prefix@
|
||||
|
||||
bindir = @bindir@
|
||||
sbindir = @sbindir@
|
||||
libexecdir = @libexecdir@
|
||||
datadir = @datadir@
|
||||
sysconfdir = @sysconfdir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
localstatedir = @localstatedir@
|
||||
libdir = @libdir@
|
||||
infodir = @infodir@
|
||||
mandir = @mandir@
|
||||
includedir = @includedir@
|
||||
oldincludedir = /usr/include
|
||||
|
||||
DESTDIR =
|
||||
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
|
||||
top_builddir = .
|
||||
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
transform = @program_transform_name@
|
||||
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
host_alias = @host_alias@
|
||||
host_triplet = @host@
|
||||
AR = @AR@
|
||||
AS = @AS@
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
CXXCPP = @CXXCPP@
|
||||
DLLTOOL = @DLLTOOL@
|
||||
ECHO = @ECHO@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
F77 = @F77@
|
||||
GCJ = @GCJ@
|
||||
GCJFLAGS = @GCJFLAGS@
|
||||
LIBTIFF_MAJOR_VERSION = @LIBTIFF_MAJOR_VERSION@
|
||||
LIBTIFF_MICRO_VERSION = @LIBTIFF_MICRO_VERSION@
|
||||
LIBTIFF_MINOR_VERSION = @LIBTIFF_MINOR_VERSION@
|
||||
LIBTIFF_VERSION = @LIBTIFF_VERSION@
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LN_S = @LN_S@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
OBJDUMP = @OBJDUMP@
|
||||
OBJEXT = @OBJEXT@
|
||||
PACKAGE = @PACKAGE@
|
||||
RANLIB = @RANLIB@
|
||||
RC = @RC@
|
||||
STRIP = @STRIP@
|
||||
VERSION = @VERSION@
|
||||
|
||||
EXTRA_DIST = COPYRIGHT ChangeLog HOWTO-RELEASE README RELEASE-DATE TODO VERSION autogen.sh
|
||||
|
||||
|
||||
SUBDIRS = libtiff man
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_HEADER = ./libtiff/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
DIST_COMMON = README ChangeLog Makefile.am Makefile.in TODO aclocal.m4 \
|
||||
config.guess config.sub configure configure.ac install-sh ltmain.sh \
|
||||
missing mkinstalldirs
|
||||
|
||||
|
||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
TAR = tar
|
||||
GZIP_ENV = --best
|
||||
all: all-redirect
|
||||
.SUFFIXES:
|
||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4)
|
||||
cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
||||
cd $(top_builddir) \
|
||||
&& CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||
|
||||
$(ACLOCAL_M4): configure.ac
|
||||
cd $(srcdir) && $(ACLOCAL)
|
||||
|
||||
config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
$(SHELL) ./config.status --recheck
|
||||
$(srcdir)/configure: $(srcdir)/configure.ac $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
|
||||
cd $(srcdir) && $(AUTOCONF)
|
||||
|
||||
# This directory's subdirectories are mostly independent; you can cd
|
||||
# into them and run `make' without going through this Makefile.
|
||||
# To change the values of `make' variables: instead of editing Makefiles,
|
||||
# (1) if the variable is set in `config.status', edit `config.status'
|
||||
# (which will cause the Makefiles to be regenerated when you run `make');
|
||||
# (2) otherwise, pass the desired values on the `make' command line.
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
all-recursive install-data-recursive install-exec-recursive \
|
||||
installdirs-recursive install-recursive uninstall-recursive \
|
||||
check-recursive installcheck-recursive info-recursive dvi-recursive:
|
||||
@set fnord $(MAKEFLAGS); amf=$$2; \
|
||||
dot_seen=no; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
dot_seen=yes; \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
|
||||
done; \
|
||||
if test "$$dot_seen" = "no"; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
||||
fi; test -z "$$fail"
|
||||
|
||||
mostlyclean-recursive clean-recursive distclean-recursive \
|
||||
maintainer-clean-recursive:
|
||||
@set fnord $(MAKEFLAGS); amf=$$2; \
|
||||
dot_seen=no; \
|
||||
rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
rev="$$subdir $$rev"; \
|
||||
test "$$subdir" != "." || dot_seen=yes; \
|
||||
done; \
|
||||
test "$$dot_seen" = "no" && rev=". $$rev"; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
for subdir in $$rev; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
|
||||
done && test -z "$$fail"
|
||||
tags-recursive:
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
|
||||
done
|
||||
|
||||
# create release or beta distribution archive
|
||||
release.tar.zip:
|
||||
if test "@RELEASE@" = "" ; then \
|
||||
VERSIONREL="@VERSION@"; \
|
||||
else \
|
||||
VERSIONREL="@VERSION@-@RELEASE@"; \
|
||||
fi; \
|
||||
rm -f ../tiff-$$VERSIONREL $$VERSIONREL $$VERSIONREL-tar; \
|
||||
ln -s ${SRCDIR} tiff-$$VERSIONREL; \
|
||||
(for i in ${DISTFILES}; do \
|
||||
echo $$i; \
|
||||
done) | sed "s;.*;tiff-$$VERSIONREL/&;" >$$VERSIONREL; \
|
||||
tar cvf $$VERSIONREL-tar `cat $$VERSIONREL`; \
|
||||
zip ../tiff-$$VERSIONREL.zip `cat $$VERSIONREL`; \
|
||||
cat $$VERSIONREL-tar | ${COMPRESS} >../tiff-$$VERSIONREL.tar.${ZIPSUF}; \
|
||||
rm -f tiff-$$VERSIONREL $$VERSIONREL $$VERSIONREL-tar;
|
||||
#
|
||||
# Simple rule to run test suite assuming that pics directory is
|
||||
# just below this one, and that .rpt files are available.
|
||||
#
|
||||
test:
|
||||
${SRCDIR}/test_pics.sh pics/*.tif
|
||||
tags: TAGS
|
||||
|
||||
#
|
||||
# Create a package of the test images.
|
||||
#
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP)
|
||||
list='$(SOURCES) $(HEADERS)'; \
|
||||
unique=`for i in $$list; do echo $$i; done | \
|
||||
awk ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
here=`pwd` && cd $(srcdir) \
|
||||
&& mkid -f$$here/ID $$unique $(LISP)
|
||||
|
||||
PICS=\
|
||||
pics/README \
|
||||
pics/cramps.tif \
|
||||
pics/cramps-tile.tif \
|
||||
pics/fax2d.tif \
|
||||
pics/g3test.tif \
|
||||
pics/jello.tif \
|
||||
pics/jim___cg.tif \
|
||||
pics/jim___dg.tif \
|
||||
pics/jim___gg.tif \
|
||||
pics/jim___ah.tif \
|
||||
pics/strike.tif \
|
||||
pics/oxford.tif \
|
||||
pics/quad-lzw.tif \
|
||||
pics/quad-tile.tif \
|
||||
pics/text.tif \
|
||||
pics/ycbcr-cat.tif \
|
||||
pics/smallliz.tif \
|
||||
pics/zackthecat.tif \
|
||||
pics/fax2d.g3 \
|
||||
pics/g3test.g3 \
|
||||
${NULL}
|
||||
TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
|
||||
fi; \
|
||||
done; \
|
||||
list='$(SOURCES) $(HEADERS)'; \
|
||||
unique=`for i in $$list; do echo $$i; done | \
|
||||
awk ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
|
||||
|| (cd $(srcdir) && etags -o $$here/TAGS $(ETAGS_ARGS) $$tags $$unique $(LISP))
|
||||
|
||||
pics.tar:
|
||||
tar cvf - ${PICS} | ${COMPRESS} > tiffpics.tar.${ZIPSUF}
|
||||
mostlyclean-tags:
|
||||
|
||||
clean-tags:
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID
|
||||
|
||||
maintainer-clean-tags:
|
||||
|
||||
distdir = $(PACKAGE)-$(VERSION)
|
||||
top_distdir = $(distdir)
|
||||
|
||||
# This target untars the dist file and tries a VPATH configuration. Then
|
||||
# it guarantees that the distribution is self-contained by making another
|
||||
# tarfile.
|
||||
distcheck: dist
|
||||
-rm -rf $(distdir)
|
||||
GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz
|
||||
mkdir $(distdir)/=build
|
||||
mkdir $(distdir)/=inst
|
||||
dc_install_base=`cd $(distdir)/=inst && pwd`; \
|
||||
cd $(distdir)/=build \
|
||||
&& ../configure --srcdir=.. --prefix=$$dc_install_base \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dist
|
||||
-rm -rf $(distdir)
|
||||
@banner="$(distdir).tar.gz is ready for distribution"; \
|
||||
dashes=`echo "$$banner" | sed s/./=/g`; \
|
||||
echo "$$dashes"; \
|
||||
echo "$$banner"; \
|
||||
echo "$$dashes"
|
||||
dist: distdir
|
||||
-chmod -R a+r $(distdir)
|
||||
GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
|
||||
-rm -rf $(distdir)
|
||||
dist-all: distdir
|
||||
-chmod -R a+r $(distdir)
|
||||
GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
|
||||
-rm -rf $(distdir)
|
||||
distdir: $(DISTFILES)
|
||||
-rm -rf $(distdir)
|
||||
mkdir $(distdir)
|
||||
-chmod 777 $(distdir)
|
||||
here=`cd $(top_builddir) && pwd`; \
|
||||
top_distdir=`cd $(distdir) && pwd`; \
|
||||
distdir=`cd $(distdir) && pwd`; \
|
||||
cd $(top_srcdir) \
|
||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign Makefile
|
||||
@for file in $(DISTFILES); do \
|
||||
d=$(srcdir); \
|
||||
if test -d $$d/$$file; then \
|
||||
cp -pr $$d/$$file $(distdir)/$$file; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file || :; \
|
||||
fi; \
|
||||
done
|
||||
for subdir in $(SUBDIRS); do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
test -d $(distdir)/$$subdir \
|
||||
|| mkdir $(distdir)/$$subdir \
|
||||
|| exit 1; \
|
||||
chmod 777 $(distdir)/$$subdir; \
|
||||
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(distdir) distdir=../$(distdir)/$$subdir distdir) \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
info-am:
|
||||
info: info-recursive
|
||||
dvi-am:
|
||||
dvi: dvi-recursive
|
||||
check-am: all-am
|
||||
check: check-recursive
|
||||
installcheck-am:
|
||||
installcheck: installcheck-recursive
|
||||
install-exec-am:
|
||||
install-exec: install-exec-recursive
|
||||
|
||||
install-data-am:
|
||||
install-data: install-data-recursive
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
install: install-recursive
|
||||
uninstall-am:
|
||||
uninstall: uninstall-recursive
|
||||
all-am: Makefile
|
||||
all-redirect: all-recursive
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
|
||||
installdirs: installdirs-recursive
|
||||
installdirs-am:
|
||||
|
||||
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-rm -f Makefile $(CONFIG_CLEAN_FILES)
|
||||
-rm -f config.cache config.log stamp-h stamp-h[0-9]*
|
||||
|
||||
maintainer-clean-generic:
|
||||
mostlyclean-am: mostlyclean-tags mostlyclean-generic
|
||||
|
||||
mostlyclean: mostlyclean-recursive
|
||||
|
||||
clean-am: clean-tags clean-generic mostlyclean-am
|
||||
|
||||
clean: clean-recursive
|
||||
|
||||
distclean-am: distclean-tags distclean-generic clean-am
|
||||
-rm -f libtool
|
||||
|
||||
distclean: distclean-recursive
|
||||
-rm -f config.status
|
||||
|
||||
maintainer-clean-am: maintainer-clean-tags maintainer-clean-generic \
|
||||
distclean-am
|
||||
@echo "This command is intended for maintainers to use;"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
|
||||
maintainer-clean: maintainer-clean-recursive
|
||||
-rm -f config.status
|
||||
|
||||
.PHONY: install-data-recursive uninstall-data-recursive \
|
||||
install-exec-recursive uninstall-exec-recursive installdirs-recursive \
|
||||
uninstalldirs-recursive all-recursive check-recursive \
|
||||
installcheck-recursive info-recursive dvi-recursive \
|
||||
mostlyclean-recursive distclean-recursive clean-recursive \
|
||||
maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
|
||||
distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
|
||||
dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
|
||||
install-exec install-data-am install-data install-am install \
|
||||
uninstall-am uninstall all-redirect all-am all installdirs-am \
|
||||
installdirs mostlyclean-generic distclean-generic clean-generic \
|
||||
maintainer-clean-generic clean mostlyclean distclean maintainer-clean
|
||||
|
||||
|
||||
# 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:
|
||||
|
79
libtiff/Makefile.am
Normal file
79
libtiff/Makefile.am
Normal file
@ -0,0 +1,79 @@
|
||||
# $Id: Makefile.am,v 1.1 2004-03-19 17:29:06 dron Exp $
|
||||
#
|
||||
# Tag Image File Format (TIFF) Software
|
||||
#
|
||||
# Copyright (C) 2004, Andrey Kiselev <dron@remotesensing.org>
|
||||
#
|
||||
# Permission to use, copy, modify, distribute, and sell this software and
|
||||
# its documentation for any purpose is hereby granted without fee, provided
|
||||
# that (i) the above copyright notices and this permission notice appear in
|
||||
# all copies of the software and related documentation, and (ii) the names of
|
||||
# Sam Leffler and Silicon Graphics may not be used in any advertising or
|
||||
# publicity relating to the software without the specific, prior written
|
||||
# permission of Sam Leffler and Silicon Graphics.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
||||
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
||||
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
||||
#
|
||||
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
||||
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
||||
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
||||
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
||||
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
# OF THIS SOFTWARE.
|
||||
|
||||
# Process this file with automake to produce Makefile.in.
|
||||
|
||||
lib_LTLIBRARIES = libtiff.la
|
||||
libtiff_la_SOURCES = \
|
||||
tif_aux.c \
|
||||
tif_close.c \
|
||||
tif_codec.c \
|
||||
tif_compress.c \
|
||||
tif_color.c \
|
||||
tif_dir.c \
|
||||
tif_dirinfo.c \
|
||||
tif_dirread.c \
|
||||
tif_dirwrite.c \
|
||||
tif_dumpmode.c \
|
||||
tif_error.c \
|
||||
tif_extension.c \
|
||||
tif_fax3.c \
|
||||
tif_fax3sm.c \
|
||||
tif_getimage.c \
|
||||
tif_jpeg.c \
|
||||
tif_flush.c \
|
||||
tif_luv.c \
|
||||
tif_lzw.c \
|
||||
tif_next.c \
|
||||
tif_ojpeg.c \
|
||||
tif_open.c \
|
||||
tif_packbits.c \
|
||||
tif_pixarlog.c \
|
||||
tif_predict.c \
|
||||
tif_print.c \
|
||||
tif_read.c \
|
||||
tif_swab.c \
|
||||
tif_strip.c \
|
||||
tif_thunder.c \
|
||||
tif_tile.c \
|
||||
tif_unix.c \
|
||||
tif_version.c \
|
||||
tif_warning.c \
|
||||
tif_write.c \
|
||||
tif_zip.c
|
||||
libtiff_la_LDFLAGS = \
|
||||
-no-undefined \
|
||||
-version-number $(LIBTIFF_MAJOR_VERSION):$(LIBTIFF_MINOR_VERSION):$(LIBTIFF_MICRO_VERSION)
|
||||
|
||||
#
|
||||
# The finite state machine tables used by the G3/G4 decoders
|
||||
# are generated by the mkg3states program. On systems without
|
||||
# make these rules have to be manually carried out.
|
||||
#
|
||||
tif_fax3sm.c: mkg3states.c tif_fax3.h
|
||||
${CC} -o mkg3states ${CFLAGS} mkg3states.c
|
||||
rm -f tif_fax3sm.c; ./mkg3states -c const tif_fax3sm.c
|
||||
|
||||
|
@ -1,10 +1,21 @@
|
||||
# $Header: /cvs/maptools/cvsroot/libtiff/libtiff/Makefile.in,v 1.25 2003-11-13 19:46:39 dron Exp $
|
||||
# Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
|
||||
|
||||
# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
# $Id: Makefile.in,v 1.26 2004-03-19 17:29:06 dron Exp $
|
||||
#
|
||||
# Tag Image File Format Library
|
||||
# Tag Image File Format (TIFF) Software
|
||||
#
|
||||
# Copyright (C) 2004, Andrey Kiselev <dron@remotesensing.org>
|
||||
#
|
||||
# Copyright (c) 1988-1997 Sam Leffler
|
||||
# Copyright (c) 1991-1997 Silicon Graphics, Inc.
|
||||
#
|
||||
# Permission to use, copy, modify, distribute, and sell this software and
|
||||
# its documentation for any purpose is hereby granted without fee, provided
|
||||
# that (i) the above copyright notices and this permission notice appear in
|
||||
@ -23,392 +34,414 @@
|
||||
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
||||
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
# OF THIS SOFTWARE.
|
||||
#
|
||||
|
||||
SRCDIR = @LIBSRCDIR@
|
||||
# Process this file with automake to produce Makefile.in.
|
||||
|
||||
#
|
||||
# VERSION: @VERSION@
|
||||
# DATE: @DATE@
|
||||
# TARGET: @TARGET@
|
||||
# CCOMPILER: @CCOMPILER@
|
||||
#
|
||||
SHELL = @SCRIPT_SH@
|
||||
SCRIPT_SH = @SCRIPT_SH@
|
||||
NULL =
|
||||
CC = @CCOMPILER@
|
||||
AR = @AR@
|
||||
AROPTS = @AROPTS@
|
||||
RANLIB = @RANLIB@
|
||||
INSTALL = @INSTALL@
|
||||
|
||||
#
|
||||
# If JPEG support is to be included and the Independent JPEG
|
||||
# Software distribution is not installed then DIR_JPEG must
|
||||
# refer to the directory where the include files reside.
|
||||
#
|
||||
# Similarly, if the libgz distribution is not installed, then
|
||||
# DIR_LIBGZ must refer to the directory where the include files
|
||||
# are located. Note that recent versions
|
||||
#
|
||||
IPATH = -I. -I${SRCDIR} @COPT_LIBINC@
|
||||
#
|
||||
# To enable JPEG support include -DJPEG_SUPPORT here.
|
||||
# To enable Deflate support add a -DZIP_SUPPORT here.
|
||||
# Note that where the configure script is used these defines
|
||||
# are automatically setup when JPEG/ZIP is set to "yes".
|
||||
#
|
||||
# Otherwise, consult tiffconf.h for information on controlling
|
||||
# the configuration of optional library support.
|
||||
#
|
||||
CONF_LIBRARY=@CONF_JPEG@ @CONF_ZIP@
|
||||
COPTS = @GCOPTS@
|
||||
OPTIMIZER=@OPTIMIZER@
|
||||
LFSOPTS=@LFSOPTS@
|
||||
CFLAGS = @ENVOPTS@ @LIBCOPTS@ ${COPTS} ${OPTIMIZER} ${LFSOPTS} ${IPATH} ${CONF_LIBRARY}
|
||||
#
|
||||
SRCS = \
|
||||
tif_aux.c \
|
||||
tif_close.c \
|
||||
tif_codec.c \
|
||||
tif_compress.c \
|
||||
tif_color.c \
|
||||
tif_dir.c \
|
||||
tif_dirinfo.c \
|
||||
tif_dirread.c \
|
||||
tif_dirwrite.c \
|
||||
tif_dumpmode.c \
|
||||
tif_error.c \
|
||||
tif_extension.c \
|
||||
tif_fax3.c \
|
||||
tif_fax3sm.c \
|
||||
tif_getimage.c \
|
||||
tif_jpeg.c \
|
||||
tif_flush.c \
|
||||
tif_luv.c \
|
||||
tif_lzw.c \
|
||||
tif_next.c \
|
||||
nnnntif_ojpeg.c \
|
||||
tif_open.c \
|
||||
tif_packbits.c \
|
||||
tif_pixarlog.c \
|
||||
tif_predict.c \
|
||||
tif_print.c \
|
||||
tif_read.c \
|
||||
tif_swab.c \
|
||||
tif_strip.c \
|
||||
tif_thunder.c \
|
||||
tif_tile.c \
|
||||
tif_unix.c \
|
||||
tif_version.c \
|
||||
tif_warning.c \
|
||||
tif_write.c \
|
||||
tif_zip.c \
|
||||
${NULL}
|
||||
OBJS = \
|
||||
tif_aux.o \
|
||||
tif_close.o \
|
||||
tif_codec.o \
|
||||
tif_compress.o \
|
||||
tif_color.o\
|
||||
tif_dir.o \
|
||||
tif_dirinfo.o \
|
||||
tif_dirread.o \
|
||||
tif_dirwrite.o \
|
||||
tif_dumpmode.o \
|
||||
tif_error.o \
|
||||
tif_extension.o \
|
||||
tif_fax3.o \
|
||||
tif_fax3sm.o \
|
||||
tif_getimage.o \
|
||||
tif_jpeg.o \
|
||||
tif_flush.o \
|
||||
tif_luv.o \
|
||||
tif_lzw.o \
|
||||
tif_next.o \
|
||||
tif_ojpeg.o \
|
||||
tif_open.o \
|
||||
tif_packbits.o \
|
||||
tif_pixarlog.o \
|
||||
tif_predict.o \
|
||||
tif_print.o \
|
||||
tif_read.o \
|
||||
tif_swab.o \
|
||||
tif_strip.o \
|
||||
tif_thunder.o \
|
||||
tif_tile.o \
|
||||
tif_unix.o \
|
||||
tif_version.o \
|
||||
tif_warning.o \
|
||||
tif_write.o \
|
||||
tif_zip.o \
|
||||
${NULL}
|
||||
TARGETS = libtiff.a
|
||||
SHELL = @SHELL@
|
||||
|
||||
all: ${TARGETS}
|
||||
if [ @DSO@dso != nodso ]; then \
|
||||
${MAKE} -${MAKEFLAGS} @DSO@dso; \
|
||||
else \
|
||||
true; \
|
||||
fi
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
prefix = @prefix@
|
||||
exec_prefix = @exec_prefix@
|
||||
|
||||
libtiff.a: ${OBJS}
|
||||
${AR} ${AROPTS} libtiff.a $?
|
||||
${RANLIB} libtiff.a
|
||||
bindir = @bindir@
|
||||
sbindir = @sbindir@
|
||||
libexecdir = @libexecdir@
|
||||
datadir = @datadir@
|
||||
sysconfdir = @sysconfdir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
localstatedir = @localstatedir@
|
||||
libdir = @libdir@
|
||||
infodir = @infodir@
|
||||
mandir = @mandir@
|
||||
includedir = @includedir@
|
||||
oldincludedir = /usr/include
|
||||
|
||||
#
|
||||
# NB: The configure script verifies that the configured
|
||||
# tools are capable of producing a DSO before enabling
|
||||
# their creation/use. The following rules are effectively
|
||||
# duplicated in the configure script to do this verification.
|
||||
# This means that if you want to add support for building a
|
||||
# DSO on another system you'll need to modify this file *and*
|
||||
# configure if you want the right thing to happen automatically
|
||||
# (should probably be fixed up).
|
||||
#
|
||||
DESTDIR =
|
||||
|
||||
# default IRIX DSO building rule
|
||||
IRIXdso: ${OBJS}
|
||||
@if [ "`basename ${CC}`" = "gcc" ]; then \
|
||||
${LD} -n32 @ENVOPTS@ -o libtiff.@DSOSUF@ -shared -rdata_shared \
|
||||
${OBJS}; \
|
||||
else \
|
||||
${CC} @ENVOPTS@ -o libtiff.@DSOSUF@ -shared -rdata_shared \
|
||||
-check_registry ${SRCDIR}/../port/irix/so_locations \
|
||||
-quickstart_info \
|
||||
${OBJS} @LIBJPEG@ @LIBGZ@; \
|
||||
fi
|
||||
touch $@
|
||||
# special rule for IRIX 5.2
|
||||
IRIX52dso: ${OBJS}
|
||||
${LD} -elf -o libtiff.@DSOSUF@ -shared -no_unresolved -all ${OBJS} \
|
||||
@LIBJPEG@ @LIBGZ@ -lc -lm
|
||||
touch $@
|
||||
# Solaris 2.x
|
||||
SOLARISdso: ${OBJS}
|
||||
${LD} -L@DIR_LIB@ -G -h libtiff.@DSOSUF@ -o libtiff.@DSOSUF@ ${OBJS}
|
||||
touch $@
|
||||
# HP-UX 10.x+
|
||||
HPUXdso: ${OBJS}
|
||||
${LD} -b -o libtiff.@DSOSUF_VERSION@ +h libtiff.@DSOSUF_VERSION@ ${OBJS}
|
||||
touch $@
|
||||
# AIX 2.3.5 and 4.1.1
|
||||
AIXdso: ${OBJS}
|
||||
rm -f libtiff.syms shr.o
|
||||
echo "#!" > libtiff.syms
|
||||
/bin/dump -g libtiff.a | sed -n -e \
|
||||
's/^[ ]*[0-9][0-9]*[ ]*\([^ .][^ ]*\)$$/\1/p' \
|
||||
>> libtiff.syms
|
||||
${LD} -o shr.o libtiff.a -H512 -T512 -bM\:SRE \
|
||||
-bE\:libtiff.syms @LIBJPEG@ @LIBGZ@ -lc -lm -L@DIR_LIB@
|
||||
rm -f libtiff.syms libtiff.@DSOSUF@
|
||||
${AR} ${AROPTS} libtiff.@DSOSUF@ shr.o
|
||||
rm -f shr.o
|
||||
touch $@
|
||||
# GNU linker shared libraries
|
||||
GNULDdso: ${OBJS}
|
||||
${CC} -shared -Wl,-soname,libtiff.@DSOSUF@ \
|
||||
-o libtiff.@DSOSUF_VERSION@ ${OBJS} \
|
||||
@LIBJPEG@ @LIBGZ@ @MACHDEPLIBS@
|
||||
rm -f libtiff.@DSOSUF@
|
||||
if [ @DSOSUF_VERSION@ != @DSOSUF@ ] ; then \
|
||||
@LN@ @LN_S@ libtiff.@DSOSUF_VERSION@ libtiff.@DSOSUF@; \
|
||||
fi
|
||||
touch $@
|
||||
DARWINdso: ${OBJS}
|
||||
${CC} -dynamiclib -undefined error \
|
||||
-install_name libtiff.@DSOSUF@ \
|
||||
-o libtiff.@DSOSUF_VERSION@ ${OBJS} \
|
||||
@LIBJPEG@ @LIBGZ@ @MACHDEPLIBS@
|
||||
rm -f libtiff.@DSOSUF@
|
||||
if [ @DSOSUF_VERSION@ != @DSOSUF@ ] ; then \
|
||||
@LN@ @LN_S@ libtiff.@DSOSUF_VERSION@ libtiff.@DSOSUF@; \
|
||||
fi
|
||||
touch $@
|
||||
# NetBSD 1.1 or FreeBSD (old style)
|
||||
NETBSDdso FREEBSDdso oldOPENBSDdso: ${OBJS}
|
||||
@rm -f libtiff_pic.a
|
||||
@${AR} cq libtiff_pic.a `lorder ${OBJS} | tsort -q`
|
||||
${RANLIB} libtiff_pic.a
|
||||
${LD} -x -Bshareable -Bforcearchive -o libtiff.@DSOSUF@ libtiff_pic.a
|
||||
rm -f libtiff_pic.a
|
||||
touch $@
|
||||
# linux ELF shared lib rule
|
||||
LINUXdso: ${OBJS}
|
||||
${CC} -shared -Wl,-soname,libtiff.@DSOSUF@ \
|
||||
-o libtiff.@DSOSUF_VERSION@ ${OBJS} \
|
||||
@LIBJPEG@ @LIBGZ@ @MACHLIBDEPS@
|
||||
rm -f libtiff.@DSOSUF@
|
||||
@LN@ @LN_S@ libtiff.@DSOSUF_VERSION@ libtiff.@DSOSUF@
|
||||
touch $@
|
||||
# OSF/1 3.2 shared lib rule
|
||||
OSFdso: ${OBJS}
|
||||
${LD} -o libtiff.@DSOSUF@ -shared -error_unresolved ${OBJS} @LIBJPEG@ @LIBGZ@ -lc -lm
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
|
||||
OPENBSDdso: ${OBJS}
|
||||
${CC} -shared @LIBCOPTS@ -o libtiff.@DSOSUF_VERSION@ ${OBJS} @LIBJPEG@ @LIBGZ@ -lm
|
||||
touch $@
|
||||
top_builddir = ..
|
||||
|
||||
OPENSERVERdso: ${OBJS}
|
||||
${CC} -shared -fPIC \
|
||||
-o libtiff.@DSOSUF_VERSION@ ${OBJS} \
|
||||
@LIBJPEG@ @LIBGZ@
|
||||
rm -f libtiff.@DSOSUF@
|
||||
@LN@ @LN_S@ libtiff.@DSOSUF_VERSION@ libtiff.@DSOSUF@
|
||||
touch $@
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
|
||||
${OBJS}: ${SRCDIR}/tiffio.h ${SRCDIR}/tiff.h ${SRCDIR}/tif_dir.h
|
||||
${OBJS}: ${SRCDIR}/tiffcomp.h ${SRCDIR}/tiffiop.h ${SRCDIR}/tiffconf.h
|
||||
${OBJS}: ${SRCDIR}/tiffvers.h
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
transform = @program_transform_name@
|
||||
|
||||
VERSION = @VERSIONFILE@
|
||||
RELEASE_DATE = @RELEASE_DATE_FILE@
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
host_alias = @host_alias@
|
||||
host_triplet = @host@
|
||||
AR = @AR@
|
||||
AS = @AS@
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
CXXCPP = @CXXCPP@
|
||||
DLLTOOL = @DLLTOOL@
|
||||
ECHO = @ECHO@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
F77 = @F77@
|
||||
GCJ = @GCJ@
|
||||
GCJFLAGS = @GCJFLAGS@
|
||||
LIBTIFF_MAJOR_VERSION = @LIBTIFF_MAJOR_VERSION@
|
||||
LIBTIFF_MICRO_VERSION = @LIBTIFF_MICRO_VERSION@
|
||||
LIBTIFF_MINOR_VERSION = @LIBTIFF_MINOR_VERSION@
|
||||
LIBTIFF_VERSION = @LIBTIFF_VERSION@
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LN_S = @LN_S@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
OBJDUMP = @OBJDUMP@
|
||||
OBJEXT = @OBJEXT@
|
||||
PACKAGE = @PACKAGE@
|
||||
RANLIB = @RANLIB@
|
||||
RC = @RC@
|
||||
STRIP = @STRIP@
|
||||
VERSION = @VERSION@
|
||||
|
||||
${SRCDIR}/tiffvers.h: ${VERSION} ${SRCDIR}/mkversion.c
|
||||
${CC} -o mkversion ${CFLAGS} ${SRCDIR}/mkversion.c
|
||||
rm -f ${SRCDIR}/tiffvers.h
|
||||
./mkversion -v ${VERSION} -r ${RELEASE_DATE} ${SRCDIR}/tiffvers.h
|
||||
lib_LTLIBRARIES = libtiff.la
|
||||
libtiff_la_SOURCES = tif_aux.c tif_close.c tif_codec.c tif_compress.c tif_color.c tif_dir.c tif_dirinfo.c tif_dirread.c tif_dirwrite.c tif_dumpmode.c tif_error.c tif_extension.c tif_fax3.c tif_fax3sm.c tif_getimage.c tif_jpeg.c tif_flush.c tif_luv.c tif_lzw.c tif_next.c tif_ojpeg.c tif_open.c tif_packbits.c tif_pixarlog.c tif_predict.c tif_print.c tif_read.c tif_swab.c tif_strip.c tif_thunder.c tif_tile.c tif_unix.c tif_version.c tif_warning.c tif_write.c tif_zip.c
|
||||
|
||||
libtiff_la_LDFLAGS = -no-undefined -version-number $(LIBTIFF_MAJOR_VERSION):$(LIBTIFF_MINOR_VERSION):$(LIBTIFF_MICRO_VERSION)
|
||||
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_HEADER = config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
LTLIBRARIES = $(lib_LTLIBRARIES)
|
||||
|
||||
|
||||
DEFS = @DEFS@ -I. -I$(srcdir) -I.
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBS = @LIBS@
|
||||
libtiff_la_LIBADD =
|
||||
libtiff_la_OBJECTS = tif_aux.lo tif_close.lo tif_codec.lo \
|
||||
tif_compress.lo tif_color.lo tif_dir.lo tif_dirinfo.lo tif_dirread.lo \
|
||||
tif_dirwrite.lo tif_dumpmode.lo tif_error.lo tif_extension.lo \
|
||||
tif_fax3.lo tif_fax3sm.lo tif_getimage.lo tif_jpeg.lo tif_flush.lo \
|
||||
tif_luv.lo tif_lzw.lo tif_next.lo tif_ojpeg.lo tif_open.lo \
|
||||
tif_packbits.lo tif_pixarlog.lo tif_predict.lo tif_print.lo tif_read.lo \
|
||||
tif_swab.lo tif_strip.lo tif_thunder.lo tif_tile.lo tif_unix.lo \
|
||||
tif_version.lo tif_warning.lo tif_write.lo tif_zip.lo
|
||||
CFLAGS = @CFLAGS@
|
||||
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
CCLD = $(CC)
|
||||
LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
|
||||
DIST_COMMON = ./stamp-h.in Makefile.am Makefile.in config.h.in
|
||||
|
||||
|
||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
TAR = tar
|
||||
GZIP_ENV = --best
|
||||
DEP_FILES = .deps/tif_aux.P .deps/tif_close.P .deps/tif_codec.P \
|
||||
.deps/tif_color.P .deps/tif_compress.P .deps/tif_dir.P \
|
||||
.deps/tif_dirinfo.P .deps/tif_dirread.P .deps/tif_dirwrite.P \
|
||||
.deps/tif_dumpmode.P .deps/tif_error.P .deps/tif_extension.P \
|
||||
.deps/tif_fax3.P .deps/tif_fax3sm.P .deps/tif_flush.P \
|
||||
.deps/tif_getimage.P .deps/tif_jpeg.P .deps/tif_luv.P .deps/tif_lzw.P \
|
||||
.deps/tif_next.P .deps/tif_ojpeg.P .deps/tif_open.P \
|
||||
.deps/tif_packbits.P .deps/tif_pixarlog.P .deps/tif_predict.P \
|
||||
.deps/tif_print.P .deps/tif_read.P .deps/tif_strip.P .deps/tif_swab.P \
|
||||
.deps/tif_thunder.P .deps/tif_tile.P .deps/tif_unix.P \
|
||||
.deps/tif_version.P .deps/tif_warning.P .deps/tif_write.P \
|
||||
.deps/tif_zip.P
|
||||
SOURCES = $(libtiff_la_SOURCES)
|
||||
OBJECTS = $(libtiff_la_OBJECTS)
|
||||
|
||||
all: all-redirect
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .S .c .lo .o .obj .s
|
||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4)
|
||||
cd $(top_srcdir) && $(AUTOMAKE) --foreign libtiff/Makefile
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
||||
cd $(top_builddir) \
|
||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||
|
||||
|
||||
config.h: stamp-h
|
||||
@if test ! -f $@; then \
|
||||
rm -f stamp-h; \
|
||||
$(MAKE) stamp-h; \
|
||||
else :; fi
|
||||
stamp-h: $(srcdir)/config.h.in $(top_builddir)/config.status
|
||||
cd $(top_builddir) \
|
||||
&& CONFIG_FILES= CONFIG_HEADERS=libtiff/config.h \
|
||||
$(SHELL) ./config.status
|
||||
@echo timestamp > stamp-h 2> /dev/null
|
||||
$(srcdir)/config.h.in: $(srcdir)/stamp-h.in
|
||||
@if test ! -f $@; then \
|
||||
rm -f $(srcdir)/stamp-h.in; \
|
||||
$(MAKE) $(srcdir)/stamp-h.in; \
|
||||
else :; fi
|
||||
$(srcdir)/stamp-h.in: $(top_srcdir)/configure.ac $(ACLOCAL_M4)
|
||||
cd $(top_srcdir) && $(AUTOHEADER)
|
||||
@echo timestamp > $(srcdir)/stamp-h.in 2> /dev/null
|
||||
|
||||
mostlyclean-hdr:
|
||||
|
||||
clean-hdr:
|
||||
|
||||
distclean-hdr:
|
||||
-rm -f config.h
|
||||
|
||||
maintainer-clean-hdr:
|
||||
|
||||
mostlyclean-libLTLIBRARIES:
|
||||
|
||||
clean-libLTLIBRARIES:
|
||||
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
||||
|
||||
distclean-libLTLIBRARIES:
|
||||
|
||||
maintainer-clean-libLTLIBRARIES:
|
||||
|
||||
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
||||
@$(NORMAL_INSTALL)
|
||||
$(mkinstalldirs) $(DESTDIR)$(libdir)
|
||||
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
||||
if test -f $$p; then \
|
||||
echo "$(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(libdir)/$$p"; \
|
||||
$(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(libdir)/$$p; \
|
||||
else :; fi; \
|
||||
done
|
||||
|
||||
uninstall-libLTLIBRARIES:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
||||
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \
|
||||
done
|
||||
|
||||
# FIXME: We should only use cygpath when building on Windows,
|
||||
# and only if it is available.
|
||||
.c.obj:
|
||||
$(COMPILE) -c `cygpath -w $<`
|
||||
|
||||
.s.o:
|
||||
$(COMPILE) -c $<
|
||||
|
||||
.S.o:
|
||||
$(COMPILE) -c $<
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.o core *.core
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
||||
clean-compile:
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
maintainer-clean-compile:
|
||||
|
||||
.s.lo:
|
||||
$(LIBTOOL) --mode=compile $(COMPILE) -c $<
|
||||
|
||||
.S.lo:
|
||||
$(LIBTOOL) --mode=compile $(COMPILE) -c $<
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
distclean-libtool:
|
||||
|
||||
maintainer-clean-libtool:
|
||||
|
||||
libtiff.la: $(libtiff_la_OBJECTS) $(libtiff_la_DEPENDENCIES)
|
||||
$(LINK) -rpath $(libdir) $(libtiff_la_LDFLAGS) $(libtiff_la_OBJECTS) $(libtiff_la_LIBADD) $(LIBS)
|
||||
|
||||
tags: TAGS
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP)
|
||||
list='$(SOURCES) $(HEADERS)'; \
|
||||
unique=`for i in $$list; do echo $$i; done | \
|
||||
awk ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
here=`pwd` && cd $(srcdir) \
|
||||
&& mkid -f$$here/ID $$unique $(LISP)
|
||||
|
||||
TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS)'; \
|
||||
unique=`for i in $$list; do echo $$i; done | \
|
||||
awk ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
test -z "$(ETAGS_ARGS)config.h.in$$unique$(LISP)$$tags" \
|
||||
|| (cd $(srcdir) && etags -o $$here/TAGS $(ETAGS_ARGS) $$tags config.h.in $$unique $(LISP))
|
||||
|
||||
mostlyclean-tags:
|
||||
|
||||
clean-tags:
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID
|
||||
|
||||
maintainer-clean-tags:
|
||||
|
||||
distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
||||
|
||||
subdir = libtiff
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
here=`cd $(top_builddir) && pwd`; \
|
||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
||||
distdir=`cd $(distdir) && pwd`; \
|
||||
cd $(top_srcdir) \
|
||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign libtiff/Makefile
|
||||
@for file in $(DISTFILES); do \
|
||||
d=$(srcdir); \
|
||||
if test -d $$d/$$file; then \
|
||||
cp -pr $$d/$$file $(distdir)/$$file; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file || :; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
|
||||
|
||||
-include $(DEP_FILES)
|
||||
|
||||
mostlyclean-depend:
|
||||
|
||||
clean-depend:
|
||||
|
||||
distclean-depend:
|
||||
-rm -rf .deps
|
||||
|
||||
maintainer-clean-depend:
|
||||
|
||||
%.o: %.c
|
||||
@echo '$(COMPILE) -c $<'; \
|
||||
$(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
|
||||
@-cp .deps/$(*F).pp .deps/$(*F).P; \
|
||||
tr ' ' '\012' < .deps/$(*F).pp \
|
||||
| sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
|
||||
>> .deps/$(*F).P; \
|
||||
rm .deps/$(*F).pp
|
||||
|
||||
%.lo: %.c
|
||||
@echo '$(LTCOMPILE) -c $<'; \
|
||||
$(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
|
||||
@-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \
|
||||
< .deps/$(*F).pp > .deps/$(*F).P; \
|
||||
tr ' ' '\012' < .deps/$(*F).pp \
|
||||
| sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
|
||||
>> .deps/$(*F).P; \
|
||||
rm -f .deps/$(*F).pp
|
||||
info-am:
|
||||
info: info-am
|
||||
dvi-am:
|
||||
dvi: dvi-am
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
installcheck-am:
|
||||
installcheck: installcheck-am
|
||||
all-recursive-am: config.h
|
||||
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
||||
|
||||
install-exec-am: install-libLTLIBRARIES
|
||||
install-exec: install-exec-am
|
||||
|
||||
install-data-am:
|
||||
install-data: install-data-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
install: install-am
|
||||
uninstall-am: uninstall-libLTLIBRARIES
|
||||
uninstall: uninstall-am
|
||||
all-am: Makefile $(LTLIBRARIES) config.h
|
||||
all-redirect: all-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
|
||||
installdirs:
|
||||
$(mkinstalldirs) $(DESTDIR)$(libdir)
|
||||
|
||||
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-rm -f Makefile $(CONFIG_CLEAN_FILES)
|
||||
-rm -f config.cache config.log stamp-h stamp-h[0-9]*
|
||||
|
||||
maintainer-clean-generic:
|
||||
mostlyclean-am: mostlyclean-hdr mostlyclean-libLTLIBRARIES \
|
||||
mostlyclean-compile mostlyclean-libtool \
|
||||
mostlyclean-tags mostlyclean-depend mostlyclean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
clean-am: clean-hdr clean-libLTLIBRARIES clean-compile clean-libtool \
|
||||
clean-tags clean-depend clean-generic mostlyclean-am
|
||||
|
||||
clean: clean-am
|
||||
|
||||
distclean-am: distclean-hdr distclean-libLTLIBRARIES distclean-compile \
|
||||
distclean-libtool distclean-tags distclean-depend \
|
||||
distclean-generic clean-am
|
||||
-rm -f libtool
|
||||
|
||||
distclean: distclean-am
|
||||
|
||||
maintainer-clean-am: maintainer-clean-hdr \
|
||||
maintainer-clean-libLTLIBRARIES \
|
||||
maintainer-clean-compile maintainer-clean-libtool \
|
||||
maintainer-clean-tags maintainer-clean-depend \
|
||||
maintainer-clean-generic distclean-am
|
||||
@echo "This command is intended for maintainers to use;"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
|
||||
.PHONY: mostlyclean-hdr distclean-hdr clean-hdr maintainer-clean-hdr \
|
||||
mostlyclean-libLTLIBRARIES distclean-libLTLIBRARIES \
|
||||
clean-libLTLIBRARIES maintainer-clean-libLTLIBRARIES \
|
||||
uninstall-libLTLIBRARIES install-libLTLIBRARIES mostlyclean-compile \
|
||||
distclean-compile clean-compile maintainer-clean-compile \
|
||||
mostlyclean-libtool distclean-libtool clean-libtool \
|
||||
maintainer-clean-libtool tags mostlyclean-tags distclean-tags \
|
||||
clean-tags maintainer-clean-tags distdir mostlyclean-depend \
|
||||
distclean-depend clean-depend maintainer-clean-depend info-am info \
|
||||
dvi-am dvi check check-am installcheck-am installcheck all-recursive-am \
|
||||
install-exec-am install-exec install-data-am install-data install-am \
|
||||
install uninstall-am uninstall all-redirect all-am all installdirs \
|
||||
mostlyclean-generic distclean-generic clean-generic \
|
||||
maintainer-clean-generic clean mostlyclean distclean maintainer-clean
|
||||
|
||||
tiffvers.h: ${SRCDIR}/tiffvers.h
|
||||
|
||||
#
|
||||
# The finite state machine tables used by the G3/G4 decoders
|
||||
# are generated by the mkg3states program. On systems without
|
||||
# make these rules have to be manually carried out.
|
||||
#
|
||||
tif_fax3sm.c: ${SRCDIR}/mkg3states.c ${SRCDIR}/tif_fax3.h
|
||||
${CC} -o mkg3states ${CFLAGS} ${SRCDIR}/mkg3states.c
|
||||
tif_fax3sm.c: mkg3states.c tif_fax3.h
|
||||
${CC} -o mkg3states ${CFLAGS} mkg3states.c
|
||||
rm -f tif_fax3sm.c; ./mkg3states -c const tif_fax3sm.c
|
||||
|
||||
tif_aux.o: ${SRCDIR}/tif_aux.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_aux.c
|
||||
tif_close.o: ${SRCDIR}/tif_close.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_close.c
|
||||
tif_codec.o: ${SRCDIR}/tif_codec.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_codec.c
|
||||
tif_compress.o: ${SRCDIR}/tif_compress.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_compress.c
|
||||
tif_color.o: ${SRCDIR}/tif_color.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_color.c
|
||||
tif_dir.o: ${SRCDIR}/tif_dir.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_dir.c
|
||||
tif_dirinfo.o: ${SRCDIR}/tif_dirinfo.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_dirinfo.c
|
||||
tif_dirread.o: ${SRCDIR}/tif_dirread.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_dirread.c
|
||||
tif_dirwrite.o: ${SRCDIR}/tif_dirwrite.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_dirwrite.c
|
||||
tif_dumpmode.o: ${SRCDIR}/tif_dumpmode.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_dumpmode.c
|
||||
tif_error.o: ${SRCDIR}/tif_error.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_error.c
|
||||
tif_extension.o: ${SRCDIR}/tif_extension.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_extension.c
|
||||
tif_fax3.o: ${SRCDIR}/tif_fax3.c ${SRCDIR}/t4.h ${SRCDIR}/tif_fax3.h
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_fax3.c
|
||||
tif_getimage.o: ${SRCDIR}/tif_getimage.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_getimage.c
|
||||
tif_jpeg.o: ${SRCDIR}/tif_jpeg.c @DEPEND_JPEGLIB@
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_jpeg.c
|
||||
tif_flush.o: ${SRCDIR}/tif_flush.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_flush.c
|
||||
tif_luv.o: ${SRCDIR}/tif_luv.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_luv.c
|
||||
tif_lzw.o: ${SRCDIR}/tif_lzw.c ${SRCDIR}/tif_predict.h
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_lzw.c
|
||||
tif_next.o: ${SRCDIR}/tif_next.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_next.c
|
||||
tif_ojpeg.o: ${SRCDIR}/tif_ojpeg.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_ojpeg.c
|
||||
tif_open.o: ${SRCDIR}/tif_open.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_open.c
|
||||
tif_packbits.o: ${SRCDIR}/tif_packbits.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_packbits.c
|
||||
tif_pixarlog.o: ${SRCDIR}/tif_pixarlog.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_pixarlog.c
|
||||
tif_predict.o: ${SRCDIR}/tif_predict.c ${SRCDIR}/tif_predict.h
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_predict.c
|
||||
tif_print.o: ${SRCDIR}/tif_print.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_print.c
|
||||
tif_read.o: ${SRCDIR}/tif_read.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_read.c
|
||||
tif_swab.o: ${SRCDIR}/tif_swab.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_swab.c
|
||||
tif_strip.o: ${SRCDIR}/tif_strip.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_strip.c
|
||||
tif_thunder.o: ${SRCDIR}/tif_thunder.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_thunder.c
|
||||
tif_tile.o: ${SRCDIR}/tif_tile.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_tile.c
|
||||
tif_unix.o: ${SRCDIR}/tif_unix.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_unix.c
|
||||
tif_version.o: ${SRCDIR}/tif_version.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_version.c
|
||||
tif_warning.o: ${SRCDIR}/tif_warning.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_warning.c
|
||||
tif_write.o: ${SRCDIR}/tif_write.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_write.c
|
||||
tif_zip.o: ${SRCDIR}/tif_zip.c ${SRCDIR}/tif_predict.h @DEPEND_ZLIB@
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_zip.c
|
||||
|
||||
tif_apple.o: ${SRCDIR}/tif_apple.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_apple.c
|
||||
tif_atari.o: ${SRCDIR}/tif_atari.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_atari.c
|
||||
tif_msdos.o: ${SRCDIR}/tif_msdos.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_msdos.c
|
||||
tif_vms.o: ${SRCDIR}/tif_vms.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_vms.c
|
||||
tif_win3.o: ${SRCDIR}/tif_win3.c
|
||||
${CC} -c ${CFLAGS} ${SRCDIR}/tif_win3.c
|
||||
|
||||
INCS = ${SRCDIR}/tiff.h ${SRCDIR}/tiffio.h ${SRCDIR}/tiffconf.h \
|
||||
${SRCDIR}/tiffvers.h
|
||||
|
||||
INCS_PRIVATE = ${SRCDIR}/tiffiop.h ${SRCDIR}/tif_dir.h ${SRCDIR}/port.h
|
||||
|
||||
installHdrs: ${INCS}
|
||||
${INSTALL} -idb tiff.sw.dev -m 755 -dir ${DESTDIR}@DIR_INC@
|
||||
for i in ${INCS}; do \
|
||||
f=`basename $$i`; \
|
||||
${INSTALL} -idb tiff.sw.dev -m 444 -F ${DESTDIR}@DIR_INC@ \
|
||||
-src $$i -O $$f; \
|
||||
done
|
||||
|
||||
installPrivateHdrs: ${INCS_PRIVATE}
|
||||
${INSTALL} -idb tiff.sw.dev -m 755 -dir ${DESTDIR}@DIR_INC@
|
||||
for i in ${INCS_PRIVATE}; do \
|
||||
f=`basename $$i`; \
|
||||
${INSTALL} -idb tiff.sw.dev -m 444 -F ${DESTDIR}@DIR_INC@ \
|
||||
-src $$i -O $$f; \
|
||||
done
|
||||
|
||||
installDSO: @DSO@dso
|
||||
if [ @DSOSUF_VERSION@ != @DSOSUF@ ]; then \
|
||||
${INSTALL} -idb tiff.sw.tools.nostrip -m 555 \
|
||||
-F ${DESTDIR}@DIR_LIB@ -O libtiff.@DSOSUF_VERSION@; \
|
||||
${INSTALL} -idb tiff.sw.tools -F ${DESTDIR}@DIR_LIB@ \
|
||||
-lns libtiff.@DSOSUF_VERSION@ -O libtiff.@DSOSUF@; \
|
||||
${INSTALL} -idb tiff.sw.tools -F ${DESTDIR}@DIR_LIB@ \
|
||||
-lns libtiff.@DSOSUF@ -O libtiff.so; \
|
||||
else \
|
||||
${INSTALL} -idb tiff.sw.tools.nostrip -m 555 \
|
||||
-F ${DESTDIR}@DIR_LIB@ -O libtiff.@DSOSUF@; \
|
||||
fi
|
||||
|
||||
install: all installHdrs
|
||||
${INSTALL} -idb tiff.sw.dev -m 755 -dir ${DESTDIR}@DIR_LIB@
|
||||
${INSTALL} -idb tiff.sw.dev -m 444 -F ${DESTDIR}@DIR_LIB@ -O libtiff.a
|
||||
if [ @DSO@dso != nodso ]; then \
|
||||
${MAKE} -${MAKEFLAGS} installDSO; \
|
||||
else \
|
||||
true; \
|
||||
fi
|
||||
|
||||
install-private: install installPrivateHdrs
|
||||
|
||||
clean:
|
||||
rm -f ${TARGETS} ${OBJS} core a.out \
|
||||
mkg3states tif_fax3sm.c \
|
||||
mkversion ${SRCDIR}/tiffvers.h \
|
||||
libtiff.a libtiff.@DSOSUF@ libtiff.@DSOSUF_VERSION@ *dso
|
||||
# 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:
|
||||
|
Loading…
Reference in New Issue
Block a user