diff options
author | Mike Welles <mike@bangstate.com> | 1999-11-28 20:15:36 +0000 |
---|---|---|
committer | Mike Welles <mike@bangstate.com> | 1999-11-28 20:15:36 +0000 |
commit | 9ec07df122a6a29a5f9168d3b6ff251c8781bc82 (patch) | |
tree | 7b1a0d97a1f3d3b03695d97740955746aa276ff4 /Makefile.in | |
parent | 29e8a9954330c6e8eb9b3947611042088c5c606d (diff) | |
download | libtiff-git-9ec07df122a6a29a5f9168d3b6ff251c8781bc82.tar.gz |
* Fixed apocalypse-inducing y2k bug in contrib/ras/ras2tiff.c
* Did some casts cleaning up to reduce compiler warnings in tif_fax3.c,
from Bruce Carmeron <cameron@petris.com> -- modifications of
changes made by Frank (sun cc still complained on cast).
* Added tiffconf.h to install target per request from Bill
Radcliffe <billr@corbis.com>: "We need a way for ImageMagick to
know features have been compiled into the TIFF library in order to
handle things properly".
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 75ffaa5b..4fe5b0a2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,5 +1,5 @@ #! smake -# $Header: /cvs/maptools/cvsroot/libtiff/Makefile.in,v 1.5 1999-09-28 17:22:20 mwelles Exp $ +# $Header: /cvs/maptools/cvsroot/libtiff/Makefile.in,v 1.6 1999-11-28 20:15:36 mwelles Exp $ # # @WARNING@ # @@ -394,6 +394,7 @@ CONTRIBFILES=\ contrib/addtiffo/rawblockedimage.cpp \ contrib/addtiffo/rawblockedimage.h \ ${NULL} + DISTFILES=\ ${TIFFFILES} \ dist/tiff.alpha \ @@ -416,9 +417,8 @@ rcsclean: release: (cd ${SRCDIR}/dist; sh newversion) - -${MAKE} clean ${MAKE} release.stamp - ${SRCDIR}/configure ${CONFIG} +# ${SRCDIR}/configure ${CONFIG} # ${MAKE} product ${MAKE} release.tar @@ -436,7 +436,7 @@ releasediff: # create release distribution archive release.tar: VERSION="@VERSION@"; \ - rm -f tiff-$$VERSION $$VERSION $$VERSION-tar; \ + rm -f ../tiff-$$VERSION $$VERSION $$VERSION-tar; \ ln -s ${SRCDIR} tiff-$$VERSION; \ (for i in ${DISTFILES}; do \ echo $$i; \ |