summaryrefslogtreecommitdiff
path: root/tools/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'tools/Makefile.in')
-rw-r--r--tools/Makefile.in10
1 files changed, 9 insertions, 1 deletions
diff --git a/tools/Makefile.in b/tools/Makefile.in
index b80c037e..e7f3c557 100644
--- a/tools/Makefile.in
+++ b/tools/Makefile.in
@@ -1,4 +1,4 @@
-# $Header: /usr/local/cvs/internal/libtiff/tools/Makefile.in,v 1.1.1.1 1999/07/27 21:50:28 mike Exp $
+# $Header: /cvsroot/osrs/libtiff/tools/Makefile.in,v 1.2 1999/08/16 18:26:37 warmerda Exp $
#
# @WARNING@
#
@@ -65,6 +65,7 @@ OBJS= \
ras2tiff.o \
thumbnail.o \
tiff2bw.o \
+ tiff2rgba.o \
tiff2ps.o \
tiffcmp.o \
tiffcp.o \
@@ -84,6 +85,7 @@ TARGETS =\
thumbnail \
ras2tiff \
tiff2bw \
+ tiff2rgba \
tiff2ps \
tiffcmp \
tiffcp \
@@ -172,6 +174,12 @@ tiff2bw: tiff2bw.o ${TIFFLIB}
tiff2bw.o: ${SRCDIR}/tiff2bw.c
${CC} -c ${CFLAGS} ${SRCDIR}/tiff2bw.c
+# convert anything to RGBA.
+tiff2rgba: tiff2rgba.o ${TIFFLIB}
+ ${CC} -o tiff2rgba ${CFLAGS} tiff2rgba.o ${LIBS}
+tiff2rgba.o: ${SRCDIR}/tiff2rgba.c
+ ${CC} -c ${CFLAGS} ${SRCDIR}/tiff2rgba.c
+
# convert B&W image to bilevel w/ FS dithering
tiffdither: tiffdither.o ${TIFFLIB}
${CC} -o tiffdither ${CFLAGS} tiffdither.o ${LIBS}