added tiffset

This commit is contained in:
Frank Warmerdam 2001-03-02 04:58:46 +00:00
parent 50d81a1c8c
commit f1ca6ff832

View File

@ -1,4 +1,4 @@
# $Header: /cvs/maptools/cvsroot/libtiff/tools/Makefile.in,v 1.4 2000-04-18 20:29:01 warmerda Exp $
# $Header: /cvs/maptools/cvsroot/libtiff/tools/Makefile.in,v 1.5 2001-03-02 04:58:46 warmerda Exp $
#
# @WARNING@
#
@ -74,6 +74,7 @@ OBJS= \
tiffinfo.o \
tiffmedian.o \
tiffsplit.o \
tiffset.o \
${NULL}
TARGETS =\
fax2tiff \
@ -94,6 +95,7 @@ TARGETS =\
tiffinfo \
tiffmedian \
tiffsplit \
tiffset \
${NULL}
all: ${TARGETS}
@ -163,6 +165,11 @@ tiff2ps: tiff2ps.o ${TIFFLIB}
tiff2ps.o: ${SRCDIR}/tiff2ps.c
${CC} -c ${CFLAGS} ${SRCDIR}/tiff2ps.c
tiffset: tiffset.o ${TIFFLIB}
${CC} -o tiffset ${CFLAGS} tiffset.o ${LIBS}
tiffset.o: ${SRCDIR}/tiffset.c
${CC} -c ${CFLAGS} ${SRCDIR}/tiffset.c
#
# Junky stuff... programs that are more examples of how
# to use the library than full-blown useful tools.