1# Copyright (C) 2001-2019 Artifex Software, Inc.
2# All Rights Reserved.
3#
4# This software is provided AS-IS with no warranty, either express or
5# implied.
6#
7# This software is distributed under license and may not be copied,
8# modified or distributed except as expressly authorized under the terms
9# of the license contained in the file LICENSE in this distribution.
10#
11# Refer to licensing information at http://www.artifex.com or contact
12# Artifex Software, Inc.,  1305 Grant Avenue - Suite 200, Novato,
13# CA 94945, U.S.A., +1(415)492-9861, for further information.
14#
15# makefile for libtiff.
16# Users of this makefile must define the following:
17#	TIFFSRCDIR    - the source directory
18#	TIFFGEN       - the generated intermediate file directory
19#	SHARE_LIBTIFF - 0 to compile libtiff, 1 to share
20#	LIBTIFF_NAME  - if SHARE_LIBTIFF=1, the name of the shared library
21
22# (Rename directories.)
23TIFFSRC=$(TIFFSRCDIR)$(D)
24TIFFCONF=$(TIFFCONFDIR)$(D)
25TIFFGEN=$(TIFFGENDIR)$(D)
26TIFFOBJ=$(TIFFOBJDIR)$(D)
27TIFFO_=$(O_)$(TIFFOBJ)
28JPEGGEN=$(JGENDIR)$(D)
29
30TIFFCONFIG_H=$(TIFFCONF)libtiff$(D)tif_config$(TIFFCONFIG_SUFFIX).h
31TIFFCONF_H=$(TIFFCONF)libtiff$(D)tiffconf$(TIFFCONFIG_SUFFIX).h
32
33# Define the name of this makefile.
34LIBTIFF_MAK=$(GLSRC)tiff.mak $(TOP_MAKEFILES)
35
36TIFFCC=$(CC_) $(TIFF_CFLAGS) $(I_)$(TI_) $(II)$(JI_)$(_I) $(PF_)
37
38TIFFDEP = $(AK) $(TIFFGEN)tif_config.h $(TIFFGEN)tiffconf.h $(LIBTIFF_MAK) $(MAKEDIRS)
39gstiffio_h=$(GLSRC)gstiffio.h
40
41tiff_1=$(TIFFOBJ)tif_aux.$(OBJ) $(TIFFOBJ)tif_close.$(OBJ) $(TIFFOBJ)tif_codec.$(OBJ) $(TIFFOBJ)tif_color.$(OBJ)
42tiff_2=$(TIFFOBJ)tif_compress.$(OBJ) $(TIFFOBJ)tif_dir.$(OBJ) $(TIFFOBJ)tif_dirinfo.$(OBJ) $(TIFFOBJ)tif_dirread.$(OBJ)
43tiff_3=$(TIFFOBJ)tif_dirwrite.$(OBJ) $(TIFFOBJ)tif_dumpmode.$(OBJ) $(TIFFOBJ)tif_error.$(OBJ) $(TIFFOBJ)tif_extension.$(OBJ)
44tiff_4=$(TIFFOBJ)tif_fax3.$(OBJ) $(TIFFOBJ)tif_fax3sm.$(OBJ) $(TIFFOBJ)tif_flush.$(OBJ) $(TIFFOBJ)tif_getimage.$(OBJ)
45tiff_5=$(TIFFOBJ)tif_jbig.$(OBJ) $(TIFFOBJ)tif_jpeg.$(OBJ) $(TIFFOBJ)tif_jpeg_12.$(OBJ) $(TIFFOBJ)tif_luv.$(OBJ) $(TIFFOBJ)tif_lzw.$(OBJ) $(TIFFOBJ)tif_webp.$(OBJ)
46tiff_6=$(TIFFOBJ)tif_next.$(OBJ) $(TIFFOBJ)tif_ojpeg.$(OBJ) $(TIFFOBJ)tif_open.$(OBJ) $(TIFFOBJ)tif_packbits.$(OBJ)
47tiff_7=$(TIFFOBJ)tif_pixarlog.$(OBJ) $(TIFFOBJ)tif_predict.$(OBJ) $(TIFFOBJ)tif_print.$(OBJ) $(TIFFOBJ)tif_read.$(OBJ)
48tiff_8=$(TIFFOBJ)tif_strip.$(OBJ) $(TIFFOBJ)tif_swab.$(OBJ) $(TIFFOBJ)tif_thunder.$(OBJ) $(TIFFOBJ)tif_tile.$(OBJ)
49# tiff_9=$(TIFFOBJ)tif_$(TIFFPLATFORM).$(OBJ) $(TIFFOBJ)tif_version.$(OBJ) $(TIFFOBJ)tif_warning.$(OBJ) $(TIFFOBJ)tif_write.$(OBJ)
50tiff_9=$(TIFFOBJ)tif_version.$(OBJ) $(TIFFOBJ)tif_warning.$(OBJ) $(TIFFOBJ)tif_write.$(OBJ)
51tiff_10=$(TIFFOBJ)tif_zip.$(OBJ)
52tiff_11=$(TIFFOBJ)gstiffio.$(OBJ)
53
54$(TIFFSRC)libtiff$(D)tif_config.unix.h : $(TIFFSRC)libtiff$(D)tif_config.h.in $(LIBTIFF_MAK)
55	cd $(TIFFSRC) && ./configure
56	$(CP_) $(TIFFCONF)libtiff$(D)tif_config.h $(TIFFCONF)libtiff$(D)tif_config.unix.h
57
58$(TIFFSRC)libtiff$(D)tiffconf.unix.h : $(TIFFSRC)libtiff$(D)tiffconf.h.in $(LIBTIFF_MAK)
59	cd $(TIFFSRC) && ./configure
60	$(CP_) $(TIFFCONF)libtiff$(D)tiffconf.h $(TIFFCONF)libtiff$(D)tiffconf.unix.h
61
62$(TIFFOBJ)tif_aux.$(OBJ) : $(TIFFSRC)/libtiff/tif_aux.c $(TIFFDEP)
63	$(TIFFCC) $(TIFFO_)tif_aux.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_aux.c
64
65$(TIFFOBJ)tif_close.$(OBJ) : $(TIFFSRC)/libtiff/tif_close.c $(TIFFDEP)
66	$(TIFFCC) $(TIFFO_)tif_close.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_close.c
67
68$(TIFFOBJ)tif_codec.$(OBJ) : $(TIFFSRC)/libtiff/tif_codec.c $(TIFFDEP)
69	$(TIFFCC) $(TIFFO_)tif_codec.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_codec.c
70
71$(TIFFOBJ)tif_color.$(OBJ) : $(TIFFSRC)/libtiff/tif_color.c $(TIFFDEP)
72	$(TIFFCC) $(TIFFO_)tif_color.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_color.c
73
74$(TIFFOBJ)tif_compress.$(OBJ) : $(TIFFSRC)/libtiff/tif_compress.c $(TIFFDEP)
75	$(TIFFCC) $(TIFFO_)tif_compress.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_compress.c
76
77$(TIFFOBJ)tif_dir.$(OBJ) : $(TIFFSRC)/libtiff/tif_dir.c $(TIFFDEP)
78	$(TIFFCC) $(TIFFO_)tif_dir.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_dir.c
79
80$(TIFFOBJ)tif_dirinfo.$(OBJ) : $(TIFFSRC)/libtiff/tif_dirinfo.c $(TIFFDEP)
81	$(TIFFCC) $(TIFFO_)tif_dirinfo.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_dirinfo.c
82
83$(TIFFOBJ)tif_dirread.$(OBJ) : $(TIFFSRC)/libtiff/tif_dirread.c $(TIFFDEP)
84	$(TIFFCC) $(TIFFO_)tif_dirread.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_dirread.c
85
86$(TIFFOBJ)tif_dirwrite.$(OBJ) : $(TIFFSRC)/libtiff/tif_dirwrite.c $(TIFFDEP)
87	$(TIFFCC) $(TIFFO_)tif_dirwrite.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_dirwrite.c
88
89$(TIFFOBJ)tif_dumpmode.$(OBJ) : $(TIFFSRC)/libtiff/tif_dumpmode.c $(TIFFDEP)
90	$(TIFFCC) $(TIFFO_)tif_dumpmode.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_dumpmode.c
91
92$(TIFFOBJ)tif_error.$(OBJ) : $(TIFFSRC)/libtiff/tif_error.c $(TIFFDEP)
93	$(TIFFCC) $(TIFFO_)tif_error.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_error.c
94
95$(TIFFOBJ)tif_extension.$(OBJ) : $(TIFFSRC)/libtiff/tif_extension.c $(TIFFDEP)
96	$(TIFFCC) $(TIFFO_)tif_extension.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_extension.c
97
98$(TIFFOBJ)tif_fax3.$(OBJ) : $(TIFFSRC)/libtiff/tif_fax3.c $(TIFFDEP)
99	$(TIFFCC) $(TIFFO_)tif_fax3.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_fax3.c
100
101$(TIFFOBJ)tif_fax3sm.$(OBJ) : $(TIFFSRC)/libtiff/tif_fax3sm.c $(TIFFDEP)
102	$(TIFFCC) $(TIFFO_)tif_fax3sm.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_fax3sm.c
103
104$(TIFFOBJ)tif_flush.$(OBJ) : $(TIFFSRC)/libtiff/tif_flush.c $(TIFFDEP)
105	$(TIFFCC) $(TIFFO_)tif_flush.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_flush.c
106
107$(TIFFOBJ)tif_getimage.$(OBJ) : $(TIFFSRC)/libtiff/tif_getimage.c $(TIFFDEP)
108	$(TIFFCC) $(TIFFO_)tif_getimage.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_getimage.c
109
110$(TIFFOBJ)tif_jbig.$(OBJ) : $(TIFFSRC)/libtiff/tif_jbig.c $(TIFFDEP)
111	$(TIFFCC) $(TIFFO_)tif_jbig.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_jbig.c
112
113$(TIFFOBJ)tif_jpeg_12.$(OBJ) : $(TIFFSRC)/libtiff/tif_jpeg_12.c $(TIFFDEP) $(JGENDIR)/jconfig.h
114	$(TIFFCC) $(TIFFO_)tif_jpeg_12.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_jpeg_12.c
115
116$(TIFFOBJ)tif_jpeg.$(OBJ) : $(TIFFSRC)/libtiff/tif_jpeg.c $(TIFFDEP) $(JGENDIR)/jconfig.h
117	$(TIFFCC) $(TIFFO_)tif_jpeg.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_jpeg.c
118
119$(TIFFOBJ)tif_luv.$(OBJ) : $(TIFFSRC)/libtiff/tif_luv.c $(TIFFDEP)
120	$(TIFFCC) $(TIFFO_)tif_luv.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_luv.c
121
122$(TIFFOBJ)tif_lzw.$(OBJ) : $(TIFFSRC)/libtiff/tif_lzw.c $(TIFFDEP)
123	$(TIFFCC) $(TIFFO_)tif_lzw.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_lzw.c
124
125$(TIFFOBJ)tif_webp.$(OBJ) : $(TIFFSRC)/libtiff/tif_webp.c $(TIFFDEP)
126	$(TIFFCC) $(TIFFO_)tif_webp.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_webp.c
127
128$(TIFFOBJ)tif_next.$(OBJ) : $(TIFFSRC)/libtiff/tif_next.c $(TIFFDEP)
129	$(TIFFCC) $(TIFFO_)tif_next.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_next.c
130
131$(TIFFOBJ)tif_ojpeg.$(OBJ) : $(TIFFSRC)/libtiff/tif_ojpeg.c $(jconfig_h) $(TIFFDEP)
132	$(TIFFCC) $(I_)$(GLI_) $(TIFFO_)tif_ojpeg.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_ojpeg.c
133
134$(TIFFOBJ)tif_open.$(OBJ) : $(TIFFSRC)/libtiff/tif_open.c $(TIFFDEP)
135	$(TIFFCC) $(TIFFO_)tif_open.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_open.c
136
137$(TIFFOBJ)tif_packbits.$(OBJ) : $(TIFFSRC)/libtiff/tif_packbits.c $(TIFFDEP)
138	$(TIFFCC) $(TIFFO_)tif_packbits.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_packbits.c
139
140$(TIFFOBJ)tif_pixarlog.$(OBJ) : $(TIFFSRC)/libtiff/tif_pixarlog.c $(TIFFDEP)
141	$(TIFFCC) $(TIFFO_)tif_pixarlog.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_pixarlog.c
142
143$(TIFFOBJ)tif_predict.$(OBJ) : $(TIFFSRC)/libtiff/tif_predict.c $(TIFFDEP)
144	$(TIFFCC) $(TIFFO_)tif_predict.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_predict.c
145
146$(TIFFOBJ)tif_print.$(OBJ) : $(TIFFSRC)/libtiff/tif_print.c $(TIFFDEP)
147	$(TIFFCC) $(TIFFO_)tif_print.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_print.c
148
149$(TIFFOBJ)tif_read.$(OBJ) : $(TIFFSRC)/libtiff/tif_read.c $(TIFFDEP)
150	$(TIFFCC) $(TIFFO_)tif_read.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_read.c
151
152$(TIFFOBJ)tif_strip.$(OBJ) : $(TIFFSRC)/libtiff/tif_strip.c $(TIFFDEP)
153	$(TIFFCC) $(TIFFO_)tif_strip.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_strip.c
154
155$(TIFFOBJ)tif_swab.$(OBJ) : $(TIFFSRC)/libtiff/tif_swab.c $(TIFFDEP)
156	$(TIFFCC) $(TIFFO_)tif_swab.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_swab.c
157
158$(TIFFOBJ)tif_thunder.$(OBJ) : $(TIFFSRC)/libtiff/tif_thunder.c $(TIFFDEP)
159	$(TIFFCC) $(TIFFO_)tif_thunder.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_thunder.c
160
161$(TIFFOBJ)tif_tile.$(OBJ) : $(TIFFSRC)/libtiff/tif_tile.c $(TIFFDEP)
162	$(TIFFCC) $(TIFFO_)tif_tile.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_tile.c
163
164$(TIFFOBJ)tif_version.$(OBJ) : $(TIFFSRC)/libtiff/tif_version.c $(TIFFDEP)
165	$(TIFFCC) $(TIFFO_)tif_version.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_version.c
166
167$(TIFFOBJ)tif_warning.$(OBJ) : $(TIFFSRC)/libtiff/tif_warning.c $(TIFFDEP)
168	$(TIFFCC) $(TIFFO_)tif_warning.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_warning.c
169
170$(TIFFOBJ)tif_write.$(OBJ) : $(TIFFSRC)/libtiff/tif_write.c $(TIFFDEP)
171	$(TIFFCC) $(TIFFO_)tif_write.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_write.c
172
173$(TIFFOBJ)tif_zip.$(OBJ) : $(TIFFSRC)/libtiff/tif_zip.c $(TIFFDEP)
174	$(TIFFCC) $(TIFFO_)tif_zip.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_zip.c
175
176# tif_win32.c include <windows.h> and needed to be compiled with non-ansi extensions.
177# so it has a different compiler flag compared to other tif_$(TIFFPLATFORM).c .
178# We also have this target before tif_$(TIFFPLATFORM).c for this reason.
179# $(TIFFOBJ)tif_win32.$(OBJ) : $(TIFFSRC)/libtiff/tif_win32.c $(TIFFDEP)
180#	$(CC) $(I_)$(TI_) $(II)$(JI_)$(_I) $(PF_) $(TIFFO_)tif_win32.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_win32.c
181
182## Generic target:
183## we may need to add targets for openvms, mac classics, os2, etc later. For the time
184## being only win32 and unix (including mac os x) are supported.
185#$(TIFFOBJ)tif_$(TIFFPLATFORM).$(OBJ) : $(TIFFSRC)/libtiff/tif_$(TIFFPLATFORM).c $(TIFFDEP)
186#	$(TIFFCC) $(TIFFO_)tif_$(TIFFPLATFORM).$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_$(TIFFPLATFORM).c
187
188#$(TIFFOBJ)tif_unix.$(OBJ) : $(TIFFSRC)/libtiff/tif_unix.c $(TIFFDEP)
189#	$(TIFFCC) $(TIFFO_)tif_unix.$(OBJ) $(C_) $(TIFFSRC)/libtiff/tif_unix.c
190
191# instead of the platform specific files above, we include our own which stubs out
192# the platform specific code, and routes via the Ghostscript I/O functions.
193$(TIFFOBJ)gstiffio_0.$(OBJ) : $(GLSRC)gstiffio.c $(gstiffio_h) $(PDEVH) $(stdint__h) $(stdio__h) $(time__h)\
194    $(gscdefs_h) $(gstypes_h) $(stream_h) $(strmio_h) $(malloc__h) $(TIFFDEP)
195	$(TIFFCC) $(TIFFO_)gstiffio_0.$(OBJ) $(D_)SHARE_LIBTIFF=$(SHARE_LIBTIFF) $(C_) $(GLSRC)gstiffio.c
196
197$(TIFFOBJ)gstiffio_1.$(OBJ) : $(GLSRC)gstiffio.c $(gstiffio_h) $(PDEVH) $(stdint__h) $(stdio__h) $(time__h)\
198    $(gscdefs_h) $(gstypes_h) $(stream_h) $(strmio_h) $(malloc__h) $(LIBTIFF_MAK) $(MAKEDIRS)
199	$(TIFFCC) $(TIFFO_)gstiffio_1.$(OBJ) $(D_)SHARE_LIBTIFF=$(SHARE_LIBTIFF) $(C_) $(GLSRC)gstiffio.c
200
201$(TIFFOBJ)gstiffio.$(OBJ) : $(TIFFOBJ)gstiffio_$(SHARE_LIBTIFF).$(OBJ) $(LIBTIFF_MAK) $(MAKEDIRS)
202	$(CP_) $(TIFFOBJ)gstiffio_$(SHARE_LIBTIFF).$(OBJ) $(TIFFOBJ)gstiffio.$(OBJ)
203
204$(TIFFGEN)tif_config.h: $(TIFFCONFIG_H) $(LIBTIFF_MAK) $(MAKEDIRS)
205	$(CP_) $(TIFFCONFIG_H) $(TIFFGEN)tif_config.h
206
207$(TIFFGEN)tiffconf.h: $(TIFFCONF_H) $(LIBTIFF_MAK) $(MAKEDIRS)
208	$(CP_) $(TIFFCONF_H) $(TIFFGEN)tiffconf.h
209
210# Define the version of libtiff.dev that we are actually using.
211$(TIFFGEN)libtiff.dev : $(TIFFGEN)libtiff_$(SHARE_LIBTIFF).dev $(LIBTIFF_MAK) $(MAKEDIRS)
212	$(CP_) $(TIFFGEN)libtiff_$(SHARE_LIBTIFF).dev $(TIFFGEN)libtiff.dev
213
214
215# Define the shared version.
216$(TIFFGEN)libtiff_1.dev : $(LIBTIFF_MAK) $(ECHOGS_XE) $(JPEGGEN)jpegd.dev $(JPEGGEN)jpege.dev \
217    $(tiff_11) $(MAKEDIRS)
218	$(SETMOD) $(TIFFGEN)libtiff_1 $(tiff_11)
219	$(ADDMOD) $(TIFFGEN)libtiff_1 -lib $(LIBTIFF_NAME)
220	$(ADDMOD) $(TIFFGEN)libtiff_1 -include $(JPEGGEN)jpegd.dev
221	$(ADDMOD) $(TIFFGEN)libtiff_1 -include $(JPEGGEN)jpege.dev
222
223# Define the non-shared version.
224$(TIFFGEN)libtiff_0.dev : $(LIBTIFF_MAK) $(ECHOGS_XE) \
225    $(tiff_1) $(tiff_2) $(tiff_3) $(tiff_4) $(tiff_5) \
226    $(tiff_6) $(tiff_7) $(tiff_8) $(tiff_9) $(tiff_10) $(tiff_11) \
227    $(JPEGGEN)jpegd.dev $(JPEGGEN)jpege.dev $(MAKEDIRS)
228	$(SETMOD) $(TIFFGEN)libtiff_0 $(tiff_1)
229	$(ADDMOD) $(TIFFGEN)libtiff_0 $(tiff_2)
230	$(ADDMOD) $(TIFFGEN)libtiff_0 $(tiff_3)
231	$(ADDMOD) $(TIFFGEN)libtiff_0 $(tiff_4)
232	$(ADDMOD) $(TIFFGEN)libtiff_0 $(tiff_5)
233	$(ADDMOD) $(TIFFGEN)libtiff_0 $(tiff_6)
234	$(ADDMOD) $(TIFFGEN)libtiff_0 $(tiff_7)
235	$(ADDMOD) $(TIFFGEN)libtiff_0 $(tiff_8)
236	$(ADDMOD) $(TIFFGEN)libtiff_0 $(tiff_9)
237	$(ADDMOD) $(TIFFGEN)libtiff_0 $(tiff_10)
238	$(ADDMOD) $(TIFFGEN)libtiff_0 $(tiff_11)
239	$(ADDMOD) $(TIFFGEN)libtiff_0 -include $(JPEGGEN)jpegd.dev
240	$(ADDMOD) $(TIFFGEN)libtiff_0 -include $(JPEGGEN)jpege.dev
241
242# Dependencies:
243$(GLSRC)gstiffio.h:$(GLSRC)gdevprn.h
244$(GLSRC)gstiffio.h:$(GLSRC)string_.h
245$(GLSRC)gstiffio.h:$(GLSRC)gsstrtok.h
246$(GLSRC)gstiffio.h:$(GLSRC)gxclthrd.h
247$(GLSRC)gstiffio.h:$(GLSRC)gxclpage.h
248$(GLSRC)gstiffio.h:$(GLSRC)gxclist.h
249$(GLSRC)gstiffio.h:$(GLSRC)gxgstate.h
250$(GLSRC)gstiffio.h:$(GLSRC)gxline.h
251$(GLSRC)gstiffio.h:$(GLSRC)gstrans.h
252$(GLSRC)gstiffio.h:$(GLSRC)gsht1.h
253$(GLSRC)gstiffio.h:$(GLSRC)math_.h
254$(GLSRC)gstiffio.h:$(GLSRC)gdevp14.h
255$(GLSRC)gstiffio.h:$(GLSRC)gxcolor2.h
256$(GLSRC)gstiffio.h:$(GLSRC)gxpcolor.h
257$(GLSRC)gstiffio.h:$(GLSRC)gdevdevn.h
258$(GLSRC)gstiffio.h:$(GLSRC)gsequivc.h
259$(GLSRC)gstiffio.h:$(GLSRC)gx.h
260$(GLSRC)gstiffio.h:$(GLSRC)gxblend.h
261$(GLSRC)gstiffio.h:$(GLSRC)gxclipsr.h
262$(GLSRC)gstiffio.h:$(GLSRC)gxcomp.h
263$(GLSRC)gstiffio.h:$(GLSRC)gxdcolor.h
264$(GLSRC)gstiffio.h:$(GLSRC)gdebug.h
265$(GLSRC)gstiffio.h:$(GLSRC)gxmatrix.h
266$(GLSRC)gstiffio.h:$(GLSRC)gxbitfmt.h
267$(GLSRC)gstiffio.h:$(GLSRC)gxdevbuf.h
268$(GLSRC)gstiffio.h:$(GLSRC)gxband.h
269$(GLSRC)gstiffio.h:$(GLSRC)gscolor2.h
270$(GLSRC)gstiffio.h:$(GLSRC)gscindex.h
271$(GLSRC)gstiffio.h:$(GLSRC)gxdevice.h
272$(GLSRC)gstiffio.h:$(GLSRC)gsht.h
273$(GLSRC)gstiffio.h:$(GLSRC)gxcpath.h
274$(GLSRC)gstiffio.h:$(GLSRC)gxdevmem.h
275$(GLSRC)gstiffio.h:$(GLSRC)gxdevcli.h
276$(GLSRC)gstiffio.h:$(GLSRC)gxpcache.h
277$(GLSRC)gstiffio.h:$(GLSRC)gsptype1.h
278$(GLSRC)gstiffio.h:$(GLSRC)gxtext.h
279$(GLSRC)gstiffio.h:$(GLSRC)gscie.h
280$(GLSRC)gstiffio.h:$(GLSRC)gstext.h
281$(GLSRC)gstiffio.h:$(GLSRC)gsnamecl.h
282$(GLSRC)gstiffio.h:$(GLSRC)gstparam.h
283$(GLSRC)gstiffio.h:$(GLSRC)gxstate.h
284$(GLSRC)gstiffio.h:$(GLSRC)gspcolor.h
285$(GLSRC)gstiffio.h:$(GLSRC)gxfcache.h
286$(GLSRC)gstiffio.h:$(GLSRC)gxcspace.h
287$(GLSRC)gstiffio.h:$(GLSRC)gsropt.h
288$(GLSRC)gstiffio.h:$(GLSRC)gsfunc.h
289$(GLSRC)gstiffio.h:$(GLSRC)gsmalloc.h
290$(GLSRC)gstiffio.h:$(GLSRC)gxrplane.h
291$(GLSRC)gstiffio.h:$(GLSRC)gxctable.h
292$(GLSRC)gstiffio.h:$(GLSRC)gsuid.h
293$(GLSRC)gstiffio.h:$(GLSRC)gxcmap.h
294$(GLSRC)gstiffio.h:$(GLSRC)gsimage.h
295$(GLSRC)gstiffio.h:$(GLSRC)gsdcolor.h
296$(GLSRC)gstiffio.h:$(GLSRC)gxdda.h
297$(GLSRC)gstiffio.h:$(GLSRC)gxcvalue.h
298$(GLSRC)gstiffio.h:$(GLSRC)gsfont.h
299$(GLSRC)gstiffio.h:$(GLSRC)gxfmap.h
300$(GLSRC)gstiffio.h:$(GLSRC)gxiclass.h
301$(GLSRC)gstiffio.h:$(GLSRC)gxftype.h
302$(GLSRC)gstiffio.h:$(GLSRC)gxfrac.h
303$(GLSRC)gstiffio.h:$(GLSRC)gscms.h
304$(GLSRC)gstiffio.h:$(GLSRC)gscspace.h
305$(GLSRC)gstiffio.h:$(GLSRC)gxpath.h
306$(GLSRC)gstiffio.h:$(GLSRC)gxbcache.h
307$(GLSRC)gstiffio.h:$(GLSRC)gsdevice.h
308$(GLSRC)gstiffio.h:$(GLSRC)gxarith.h
309$(GLSRC)gstiffio.h:$(GLSRC)gxstdio.h
310$(GLSRC)gstiffio.h:$(GLSRC)gspenum.h
311$(GLSRC)gstiffio.h:$(GLSRC)gxhttile.h
312$(GLSRC)gstiffio.h:$(GLSRC)gsrect.h
313$(GLSRC)gstiffio.h:$(GLSRC)gslparam.h
314$(GLSRC)gstiffio.h:$(GLSRC)gsxfont.h
315$(GLSRC)gstiffio.h:$(GLSRC)gxclio.h
316$(GLSRC)gstiffio.h:$(GLSRC)gsiparam.h
317$(GLSRC)gstiffio.h:$(GLSRC)gsdsrc.h
318$(GLSRC)gstiffio.h:$(GLSRC)gsio.h
319$(GLSRC)gstiffio.h:$(GLSRC)gxbitmap.h
320$(GLSRC)gstiffio.h:$(GLSRC)gsmatrix.h
321$(GLSRC)gstiffio.h:$(GLSRC)gscpm.h
322$(GLSRC)gstiffio.h:$(GLSRC)gxfixed.h
323$(GLSRC)gstiffio.h:$(GLSRC)gsrefct.h
324$(GLSRC)gstiffio.h:$(GLSRC)gsparam.h
325$(GLSRC)gstiffio.h:$(GLSRC)gp.h
326$(GLSRC)gstiffio.h:$(GLSRC)gsccolor.h
327$(GLSRC)gstiffio.h:$(GLSRC)gsstruct.h
328$(GLSRC)gstiffio.h:$(GLSRC)gxsync.h
329$(GLSRC)gstiffio.h:$(GLSRC)gsutil.h
330$(GLSRC)gstiffio.h:$(GLSRC)gsstrl.h
331$(GLSRC)gstiffio.h:$(GLSRC)gdbflags.h
332$(GLSRC)gstiffio.h:$(GLSRC)srdline.h
333$(GLSRC)gstiffio.h:$(GLSRC)gserrors.h
334$(GLSRC)gstiffio.h:$(GLSRC)scommon.h
335$(GLSRC)gstiffio.h:$(GLSRC)memento.h
336$(GLSRC)gstiffio.h:$(GLSRC)vmsmath.h
337$(GLSRC)gstiffio.h:$(GLSRC)gscsel.h
338$(GLSRC)gstiffio.h:$(GLSRC)gsbitmap.h
339$(GLSRC)gstiffio.h:$(GLSRC)gsfname.h
340$(GLSRC)gstiffio.h:$(GLSRC)gsstype.h
341$(GLSRC)gstiffio.h:$(GLSRC)stat_.h
342$(GLSRC)gstiffio.h:$(GLSRC)gxtmap.h
343$(GLSRC)gstiffio.h:$(GLSRC)gsmemory.h
344$(GLSRC)gstiffio.h:$(GLSRC)gpsync.h
345$(GLSRC)gstiffio.h:$(GLSRC)memory_.h
346$(GLSRC)gstiffio.h:$(GLSRC)gpgetenv.h
347$(GLSRC)gstiffio.h:$(GLSRC)gslibctx.h
348$(GLSRC)gstiffio.h:$(GLSRC)gscdefs.h
349$(GLSRC)gstiffio.h:$(GLSRC)gs_dll_call.h
350$(GLSRC)gstiffio.h:$(GLSRC)stdio_.h
351$(GLSRC)gstiffio.h:$(GLSRC)gscompt.h
352$(GLSRC)gstiffio.h:$(GLSRC)gxcindex.h
353$(GLSRC)gstiffio.h:$(GLSRC)gsgstate.h
354$(GLSRC)gstiffio.h:$(GLSRC)stdint_.h
355$(GLSRC)gstiffio.h:$(GLSRC)gssprintf.h
356$(GLSRC)gstiffio.h:$(GLSRC)gsccode.h
357$(GLSRC)gstiffio.h:$(GLSRC)std.h
358$(GLSRC)gstiffio.h:$(GLSRC)gstypes.h
359$(GLSRC)gstiffio.h:$(GLSRC)stdpre.h
360$(GLSRC)gstiffio.h:$(GLGEN)arch.h
361