1999-07-27 17:50:26 -04:00
|
|
|
#! smake
|
2001-04-05 22:53:24 -04:00
|
|
|
# $Header: /cvs/maptools/cvsroot/libtiff/Makefile.in,v 1.20 2001-04-06 02:53:24 warmerda Exp $
|
1999-07-27 17:50:26 -04:00
|
|
|
#
|
|
|
|
# @WARNING@
|
|
|
|
#
|
|
|
|
# Tag Image File Format Library
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
|
|
|
SRCDIR = @SRCDIR@
|
|
|
|
|
|
|
|
#
|
|
|
|
# VERSION: @VERSION@
|
|
|
|
# DATE: @DATE@
|
|
|
|
# TARGET: @TARGET@
|
|
|
|
# CCOMPILER: @CCOMPILER@
|
|
|
|
#
|
|
|
|
@SETMAKE@
|
|
|
|
SHELL = @SCRIPT_SH@
|
2001-04-05 22:53:24 -04:00
|
|
|
SCRIPT_SH = @SCRIPT_SH@
|
1999-07-27 17:50:26 -04:00
|
|
|
NULL =
|
|
|
|
ECHO = echo
|
|
|
|
GENDIST = ${TOOLROOT}/usr/sbin/gendist
|
|
|
|
INSTALL = @INSTALL@
|
|
|
|
|
|
|
|
all default:
|
|
|
|
@if [ "@PORT@" = yes ]; then \
|
2001-04-03 01:17:02 -04:00
|
|
|
${ECHO} "= "port; cd port; ${MAKE} -${MAKEFLAGS}; \
|
1999-07-27 17:50:26 -04:00
|
|
|
else \
|
|
|
|
true; \
|
|
|
|
fi
|
2001-04-03 01:17:02 -04:00
|
|
|
@${ECHO} "= "libtiff; cd libtiff; ${MAKE} -${MAKEFLAGS}
|
|
|
|
@${ECHO} "= "tools; cd tools; ${MAKE} -${MAKEFLAGS}
|
|
|
|
@${ECHO} "= "man; cd man; ${MAKE} -${MAKEFLAGS}
|
1999-07-27 17:50:26 -04:00
|
|
|
|
|
|
|
install:
|
2001-04-03 01:17:02 -04:00
|
|
|
@${ECHO} "= "libtiff; cd libtiff; ${MAKE} -${MAKEFLAGS} install
|
|
|
|
@${ECHO} "= "tools; cd tools; ${MAKE} -${MAKEFLAGS} install
|
|
|
|
@${ECHO} "= "man; cd man; ${MAKE} -${MAKEFLAGS} install
|
1999-07-27 17:50:26 -04:00
|
|
|
@if [ "@HTML@" = yes ]; then \
|
2001-04-03 01:17:02 -04:00
|
|
|
${ECHO} "= "html; cd html; ${MAKE} -${MAKEFLAGS} install; \
|
1999-07-27 17:50:26 -04:00
|
|
|
else \
|
|
|
|
true; \
|
|
|
|
fi
|
|
|
|
|
2000-11-24 01:28:45 -05:00
|
|
|
install-private: install
|
2001-04-03 01:17:02 -04:00
|
|
|
@${ECHO} "= "libtiff; cd libtiff; ${MAKE} -${MAKEFLAGS} installPrivateHdrs
|
2000-11-24 01:28:45 -05:00
|
|
|
|
1999-07-27 17:50:26 -04:00
|
|
|
clean:
|
|
|
|
@if [ "@PORT@" = yes ]; then \
|
2001-04-03 01:17:02 -04:00
|
|
|
${ECHO} "= "port; cd port; ${MAKE} -${MAKEFLAGS} clean; \
|
1999-07-27 17:50:26 -04:00
|
|
|
else \
|
|
|
|
true; \
|
|
|
|
fi
|
2001-04-03 01:17:02 -04:00
|
|
|
@${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
|
1999-07-27 17:50:26 -04:00
|
|
|
|
|
|
|
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
|
2001-04-03 01:17:02 -04:00
|
|
|
SRC=`pwd` RAWIDB=`pwd`/dist/rawidb ${MAKE} -${MAKEFLAGS} install installLink
|
1999-07-27 17:50:26 -04:00
|
|
|
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 \
|
2000-12-28 17:59:43 -05:00
|
|
|
RELEASE-DATE \
|
1999-07-27 17:50:26 -04:00
|
|
|
COPYRIGHT \
|
|
|
|
TODO \
|
1999-09-28 08:21:09 -04:00
|
|
|
test_pics.sh \
|
1999-07-27 17:50:26 -04:00
|
|
|
dist/tiff.spec \
|
|
|
|
dist/newalpha \
|
|
|
|
dist/newversion \
|
|
|
|
libtiff/Makefile.in \
|
|
|
|
libtiff/Makefile.lcc \
|
1999-09-28 08:21:09 -04:00
|
|
|
libtiff/makefile.vc \
|
2000-01-04 13:37:17 -05:00
|
|
|
libtiff/libtiff.def \
|
1999-07-27 17:50:26 -04:00
|
|
|
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_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_fax3.c \
|
1999-12-21 13:59:45 -05:00
|
|
|
libtiff/fax3sm_winnt.c \
|
1999-07-27 17:50:26 -04:00
|
|
|
libtiff/tif_fax3.h \
|
|
|
|
libtiff/tif_flush.c \
|
|
|
|
libtiff/tif_getimage.c \
|
|
|
|
libtiff/tif_jpeg.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/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 \
|
1999-09-28 08:21:09 -04:00
|
|
|
tools/Makefile.vc \
|
1999-07-27 17:50:26 -04:00
|
|
|
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/rgb2ycbcr.c \
|
|
|
|
tools/sgi2tiff.c \
|
|
|
|
tools/sgigt.c \
|
|
|
|
tools/sgisv.c \
|
|
|
|
tools/thumbnail.c \
|
|
|
|
tools/tiff2bw.c \
|
1999-09-28 08:21:09 -04:00
|
|
|
tools/tiff2rgba.c \
|
1999-07-27 17:50:26 -04:00
|
|
|
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/ycbcr.c \
|
|
|
|
man/Makefile.in \
|
|
|
|
man/fax2tiff.1 \
|
|
|
|
man/fax2ps.1 \
|
|
|
|
man/gif2tiff.1 \
|
|
|
|
man/pal2rgb.1 \
|
|
|
|
man/ppm2tiff.1 \
|
|
|
|
man/ras2tiff.1 \
|
|
|
|
man/rgb2ycbcr.1 \
|
|
|
|
man/sgi2tiff.1 \
|
|
|
|
man/thumbnail.1 \
|
|
|
|
man/tiff2bw.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/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 \
|
1999-09-28 08:21:09 -04:00
|
|
|
man/TIFFReadRGBAStrip.3t \
|
|
|
|
man/TIFFReadRGBATile.3t \
|
1999-07-27 17:50:26 -04:00
|
|
|
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 \
|
1999-11-29 11:43:31 -05:00
|
|
|
man/TIFFWriteTile.3t \
|
1999-07-27 17:50:26 -04:00
|
|
|
man/TIFFWriteRawStrip.3t \
|
|
|
|
man/TIFFWriteRawTile.3t \
|
|
|
|
man/TIFFWriteScanline.3t \
|
|
|
|
man/libtiff.3t \
|
|
|
|
man/TIFFbuffer.3t \
|
|
|
|
man/TIFFcodec.3t \
|
|
|
|
man/TIFFmemory.3t \
|
|
|
|
man/TIFFquery.3t \
|
|
|
|
man/TIFFsize.3t \
|
|
|
|
man/TIFFstrip.3t \
|
|
|
|
man/TIFFswab.3t \
|
|
|
|
man/TIFFtile.3t \
|
1999-11-30 14:37:40 -05:00
|
|
|
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/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/man \
|
|
|
|
html/man/TIFFClose.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/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/rgb2ycbcr.1.html \
|
|
|
|
html/man/sgi2tiff.1.html \
|
|
|
|
html/man/thumbnail.1.html \
|
|
|
|
html/man/tiff2bw.1.html \
|
|
|
|
html/man/tiff2ps.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}
|
1999-07-27 17:50:26 -04:00
|
|
|
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/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/win95/README \
|
|
|
|
contrib/win95/Makefile.w95 \
|
|
|
|
contrib/win95/tiff2dib.c \
|
|
|
|
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 \
|
1999-09-28 08:21:09 -04:00
|
|
|
contrib/addtiffo/README \
|
|
|
|
contrib/addtiffo/Makefile \
|
|
|
|
contrib/addtiffo/Makefile.vc \
|
|
|
|
contrib/addtiffo/addtiffo.c \
|
2000-12-22 17:33:41 -05:00
|
|
|
contrib/addtiffo/tif_overview.c \
|
2000-03-20 13:20:42 -05:00
|
|
|
contrib/iptcutil/Makefile \
|
|
|
|
contrib/iptcutil/iptcutil.c \
|
|
|
|
contrib/iptcutil/test.iptc \
|
2000-12-22 17:33:41 -05:00
|
|
|
contrib/iptcutil/test.txt \
|
1999-07-27 17:50:26 -04:00
|
|
|
${NULL}
|
1999-11-28 15:15:36 -05:00
|
|
|
|
1999-07-27 17:50:26 -04:00
|
|
|
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)
|
2001-04-03 01:17:02 -04:00
|
|
|
${MAKE} -${MAKEFLAGS}release.stamp
|
1999-11-28 15:15:36 -05:00
|
|
|
# ${SRCDIR}/configure ${CONFIG}
|
2001-04-03 01:17:02 -04:00
|
|
|
# ${MAKE} -${MAKEFLAGS} product
|
|
|
|
${MAKE} -${MAKEFLAGS} release.tar.zip
|
1999-11-30 14:37:40 -05:00
|
|
|
|
1999-07-27 17:50:26 -04:00
|
|
|
|
1999-09-26 18:03:46 -04:00
|
|
|
# stamp relevant files according to current alpha
|
1999-07-27 17:50:26 -04:00
|
|
|
release.stamp:
|
1999-09-26 18:03:46 -04:00
|
|
|
date "+%m/%d/%Y" > RELEASE-DATE
|
|
|
|
|
|
|
|
#diffs since last release
|
|
|
|
releasediff:
|
|
|
|
-@for i in ${TIFFFILES}; do \
|
|
|
|
cvs diff -D`cat RELEASE-DATE` ${SRCDIR}/$$i; \
|
1999-07-27 17:50:26 -04:00
|
|
|
done
|
|
|
|
|
2000-12-22 17:33:41 -05:00
|
|
|
# create release or beta distribution archive
|
1999-11-30 14:37:40 -05:00
|
|
|
release.tar.zip:
|
2000-12-22 17:33:41 -05:00
|
|
|
VERSIONREL="@VERSION@-@RELEASE@"; \
|
|
|
|
rm -f ../tiff-$$VERSIONREL $$VERSIONREL $$VERSIONREL-tar; \
|
|
|
|
ln -s ${SRCDIR} tiff-$$VERSIONREL; \
|
1999-07-27 17:50:26 -04:00
|
|
|
(for i in ${DISTFILES}; do \
|
|
|
|
echo $$i; \
|
2000-12-22 17:33:41 -05:00
|
|
|
done) | sed "s;.*;tiff-$$VERSIONREL/&;" >$$VERSIONREL; \
|
|
|
|
tar cvf $$VERSIONREL-tar `cat $$VERSIONREL`; \
|
|
|
|
zip ../tiff-$$VERSIONREL.zip `cat $$VERSIONREL`; \
|
2001-01-08 11:07:33 -05:00
|
|
|
cat $$VERSIONREL-tar | ${COMPRESS} >../tiff-$$VERSIONREL.tar.${ZIPSUF}; \
|
|
|
|
rm -f tiff-$$VERSIONREL $$VERSIONREL $$VERSIONREL-tar;
|
1999-08-25 15:34:25 -04:00
|
|
|
#
|
|
|
|
# Simple rule to run test suite assuming that pics directory is
|
|
|
|
# just below this one, and that .rpt files are available.
|
|
|
|
#
|
|
|
|
test:
|
|
|
|
test_pics.sh pics/*.tif
|
|
|
|
|
1999-07-27 17:50:26 -04:00
|
|
|
#
|
|
|
|
# Create a package of the test images.
|
|
|
|
#
|
|
|
|
|
|
|
|
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}
|
|
|
|
|
|
|
|
pics.tar:
|
|
|
|
tar cvf - ${PICS} | ${COMPRESS} > tiffpics.tar.${ZIPSUF}
|