comparison mupdf-source/thirdparty/libjpeg/makefile.vs @ 2:b50eed0cc0ef upstream

ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4. The directory name has changed: no version number in the expanded directory now.
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 15 Sep 2025 11:43:07 +0200
parents
children
comparison
equal deleted inserted replaced
1:1d09e1dec1d9 2:b50eed0cc0ef
1 # Makefile for Independent JPEG Group's software
2
3 # This makefile is for Microsoft Visual C++ on Windows 9x or NT.
4 # It builds the IJG library as a statically linkable library (.LIB),
5 # and builds the sample applications as console-mode apps.
6 # Thanks to Xingong Chang, Raymond Everly and others.
7
8 # Read installation instructions before saying "nmake" !!
9 # To build an optimized library without debug info, say "nmake nodebug=1".
10
11 # Pull in standard variable definitions
12 #!include <win32.mak>
13
14 # You may want to adjust these compiler options:
15 CFLAGS= $(cflags) $(cdebug) $(cvars) -I.
16 # Generally, we recommend defining any configuration symbols in jconfig.h,
17 # NOT via -D switches here.
18
19 # Link-time options:
20 LDFLAGS= $(ldebug) $(conlflags)
21
22 # To link any special libraries, add the necessary commands here.
23 LDLIBS= $(conlibs)
24
25 # Put here the object file name for the correct system-dependent memory
26 # manager file. For NT we suggest jmemnobs.obj, which expects the OS to
27 # provide adequate virtual memory.
28 SYSDEPMEM= jmemnobs.obj
29
30 # miscellaneous OS-dependent stuff
31 # file deletion command
32 RM= del
33
34 # End of configurable options.
35
36
37 # source files: JPEG library proper
38 LIBSOURCES= jaricom.c jcapimin.c jcapistd.c jcarith.c jccoefct.c jccolor.c \
39 jcdctmgr.c jchuff.c jcinit.c jcmainct.c jcmarker.c jcmaster.c \
40 jcomapi.c jcparam.c jcprepct.c jcsample.c jctrans.c jdapimin.c \
41 jdapistd.c jdarith.c jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c \
42 jddctmgr.c jdhuff.c jdinput.c jdmainct.c jdmarker.c jdmaster.c \
43 jdmerge.c jdpostct.c jdsample.c jdtrans.c jerror.c jfdctflt.c \
44 jfdctfst.c jfdctint.c jidctflt.c jidctfst.c jidctint.c jquant1.c \
45 jquant2.c jutils.c jmemmgr.c
46 # memmgr back ends: compile only one of these into a working library
47 SYSDEPSOURCES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemmac.c
48 # source files: cjpeg/djpeg/jpegtran applications, also rdjpgcom/wrjpgcom
49 APPSOURCES= cjpeg.c djpeg.c jpegtran.c rdjpgcom.c wrjpgcom.c cdjpeg.c \
50 rdcolmap.c rdswitch.c transupp.c rdppm.c wrppm.c rdgif.c wrgif.c \
51 rdtarga.c wrtarga.c rdbmp.c wrbmp.c rdrle.c wrrle.c
52 SOURCES= $(LIBSOURCES) $(SYSDEPSOURCES) $(APPSOURCES)
53 # files included by source files
54 INCLUDES= jdct.h jerror.h jinclude.h jmemsys.h jmorecfg.h jpegint.h \
55 jpeglib.h jversion.h cdjpeg.h cderror.h transupp.h
56 # documentation, test, and support files
57 DOCS= README install.txt usage.txt cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 \
58 wrjpgcom.1 wizard.txt example.c libjpeg.txt structure.txt \
59 coderules.txt filelist.txt cdaltui.txt change.log
60 MKFILES= configure Makefile.in makefile.ansi makefile.unix makefile.xc \
61 makefile.bcc makefile.b32 makefile.c32 makefile.d32 makefile.x32 \
62 makefile.b64 makefile.mc6 makefile.dj makefile.wat makefile.vc \
63 makefile.vs makejdsw.vc6 makeadsw.vc6 makejdep.vc6 makejdsp.vc6 \
64 makejmak.vc6 makecdep.vc6 makecdsp.vc6 makecmak.vc6 makeddep.vc6 \
65 makeddsp.vc6 makedmak.vc6 maketdep.vc6 maketdsp.vc6 maketmak.vc6 \
66 makerdep.vc6 makerdsp.vc6 makermak.vc6 makewdep.vc6 makewdsp.vc6 \
67 makewmak.vc6 makejsln.v16 makeasln.v16 makejvcx.v16 makejfil.v16 \
68 makecvcx.v16 makecfil.v16 makedvcx.v16 makedfil.v16 maketvcx.v16 \
69 maketfil.v16 makervcx.v16 makerfil.v16 makewvcx.v16 makewfil.v16 \
70 makajpeg.bcb makcjpeg.bcb makdjpeg.bcb makljpeg.bcb makrjpeg.bcb \
71 maktjpeg.bcb makwjpeg.bcb makcjpeg.st makdjpeg.st makljpeg.st \
72 maktjpeg.st makeproj.mac makefile.manx makefile.sas makefile.mms \
73 makefile.vms makvms.opt
74 CONFIGFILES= jconfig.cfg jconfig.xc jconfig.bcc jconfig.mc6 jconfig.dj \
75 jconfig.wat jconfig.vc jconfig.mac jconfig.st jconfig.manx \
76 jconfig.sas jconfig.vms
77 CONFIGUREFILES= config.guess config.sub install-sh ltmain.sh depcomp \
78 missing ar-lib
79 OTHERFILES= jconfig.txt ckconfig.c jmemdosa.asm libjpeg.map libjpeg.pc.in \
80 cjpegalt.c djpegalt.c
81 TESTFILES= testorig.jpg testimg.ppm testimg.gif testimg.bmp testimg.jpg \
82 testprog.jpg testimgp.jpg
83 DISTFILES= $(DOCS) $(MKFILES) $(CONFIGFILES) $(SOURCES) $(INCLUDES) \
84 $(CONFIGUREFILES) $(OTHERFILES) $(TESTFILES)
85 # library object files common to compression and decompression
86 COMOBJECTS= jaricom.obj jcomapi.obj jutils.obj jerror.obj jmemmgr.obj $(SYSDEPMEM)
87 # compression library object files
88 CLIBOBJECTS= jcapimin.obj jcapistd.obj jcarith.obj jctrans.obj jcparam.obj \
89 jdatadst.obj jcinit.obj jcmaster.obj jcmarker.obj jcmainct.obj \
90 jcprepct.obj jccoefct.obj jccolor.obj jcsample.obj jchuff.obj \
91 jcdctmgr.obj jfdctfst.obj jfdctflt.obj jfdctint.obj
92 # decompression library object files
93 DLIBOBJECTS= jdapimin.obj jdapistd.obj jdarith.obj jdtrans.obj jdatasrc.obj \
94 jdmaster.obj jdinput.obj jdmarker.obj jdhuff.obj jdmainct.obj \
95 jdcoefct.obj jdpostct.obj jddctmgr.obj jidctfst.obj jidctflt.obj \
96 jidctint.obj jdsample.obj jdcolor.obj jquant1.obj jquant2.obj \
97 jdmerge.obj
98 # These objectfiles are included in libjpeg.lib
99 LIBOBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
100 # object files for sample applications (excluding library files)
101 COBJECTS= cjpeg.obj rdppm.obj rdgif.obj rdtarga.obj rdrle.obj rdbmp.obj \
102 rdswitch.obj cdjpeg.obj
103 DOBJECTS= djpeg.obj wrppm.obj wrgif.obj wrtarga.obj wrrle.obj wrbmp.obj \
104 rdcolmap.obj cdjpeg.obj
105 TROBJECTS= jpegtran.obj rdswitch.obj cdjpeg.obj transupp.obj
106
107 # Template command for compiling .c to .obj
108 .c.obj:
109 $(cc) $(CFLAGS) $*.c
110
111
112 all: libjpeg.lib cjpeg.exe djpeg.exe jpegtran.exe rdjpgcom.exe wrjpgcom.exe
113
114 libjpeg.lib: $(LIBOBJECTS)
115 $(RM) libjpeg.lib
116 lib -out:libjpeg.lib $(LIBOBJECTS)
117
118 cjpeg.exe: $(COBJECTS) libjpeg.lib
119 $(link) $(LDFLAGS) -out:cjpeg.exe $(COBJECTS) libjpeg.lib $(LDLIBS)
120
121 djpeg.exe: $(DOBJECTS) libjpeg.lib
122 $(link) $(LDFLAGS) -out:djpeg.exe $(DOBJECTS) libjpeg.lib $(LDLIBS)
123
124 jpegtran.exe: $(TROBJECTS) libjpeg.lib
125 $(link) $(LDFLAGS) -out:jpegtran.exe $(TROBJECTS) libjpeg.lib $(LDLIBS)
126
127 rdjpgcom.exe: rdjpgcom.obj
128 $(link) $(LDFLAGS) -out:rdjpgcom.exe rdjpgcom.obj $(LDLIBS)
129
130 wrjpgcom.exe: wrjpgcom.obj
131 $(link) $(LDFLAGS) -out:wrjpgcom.exe wrjpgcom.obj $(LDLIBS)
132
133
134 clean:
135 $(RM) *.obj *.exe libjpeg.lib
136 $(RM) testout*
137
138 setup-vc6:
139 if not exist jconfig.h ren jconfig.vc jconfig.h
140 ren makejdsw.vc6 jpeg.dsw
141 ren makeadsw.vc6 apps.dsw
142 ren makejmak.vc6 jpeg.mak
143 ren makejdep.vc6 jpeg.dep
144 ren makejdsp.vc6 jpeg.dsp
145 ren makecmak.vc6 cjpeg.mak
146 ren makecdep.vc6 cjpeg.dep
147 ren makecdsp.vc6 cjpeg.dsp
148 ren makedmak.vc6 djpeg.mak
149 ren makeddep.vc6 djpeg.dep
150 ren makeddsp.vc6 djpeg.dsp
151 ren maketmak.vc6 jpegtran.mak
152 ren maketdep.vc6 jpegtran.dep
153 ren maketdsp.vc6 jpegtran.dsp
154 ren makermak.vc6 rdjpgcom.mak
155 ren makerdep.vc6 rdjpgcom.dep
156 ren makerdsp.vc6 rdjpgcom.dsp
157 ren makewmak.vc6 wrjpgcom.mak
158 ren makewdep.vc6 wrjpgcom.dep
159 ren makewdsp.vc6 wrjpgcom.dsp
160
161 setupcopy-vc6:
162 copy /y jconfig.vc jconfig.h
163 copy /y makejdsw.vc6 jpeg.dsw
164 copy /y makeadsw.vc6 apps.dsw
165 copy /y makejmak.vc6 jpeg.mak
166 copy /y makejdep.vc6 jpeg.dep
167 copy /y makejdsp.vc6 jpeg.dsp
168 copy /y makecmak.vc6 cjpeg.mak
169 copy /y makecdep.vc6 cjpeg.dep
170 copy /y makecdsp.vc6 cjpeg.dsp
171 copy /y makedmak.vc6 djpeg.mak
172 copy /y makeddep.vc6 djpeg.dep
173 copy /y makeddsp.vc6 djpeg.dsp
174 copy /y maketmak.vc6 jpegtran.mak
175 copy /y maketdep.vc6 jpegtran.dep
176 copy /y maketdsp.vc6 jpegtran.dsp
177 copy /y makermak.vc6 rdjpgcom.mak
178 copy /y makerdep.vc6 rdjpgcom.dep
179 copy /y makerdsp.vc6 rdjpgcom.dsp
180 copy /y makewmak.vc6 wrjpgcom.mak
181 copy /y makewdep.vc6 wrjpgcom.dep
182 copy /y makewdsp.vc6 wrjpgcom.dsp
183
184 setup-v16:
185 if not exist jconfig.h ren jconfig.vc jconfig.h
186 ren makejsln.v16 jpeg.sln
187 ren makeasln.v16 apps.sln
188 ren makejvcx.v16 jpeg.vcxproj
189 ren makejfil.v16 jpeg.vcxproj.filters
190 ren makecvcx.v16 cjpeg.vcxproj
191 ren makecfil.v16 cjpeg.vcxproj.filters
192 ren makedvcx.v16 djpeg.vcxproj
193 ren makedfil.v16 djpeg.vcxproj.filters
194 ren maketvcx.v16 jpegtran.vcxproj
195 ren maketfil.v16 jpegtran.vcxproj.filters
196 ren makervcx.v16 rdjpgcom.vcxproj
197 ren makerfil.v16 rdjpgcom.vcxproj.filters
198 ren makewvcx.v16 wrjpgcom.vcxproj
199 ren makewfil.v16 wrjpgcom.vcxproj.filters
200
201 setupcopy-v16:
202 copy /y jconfig.vc jconfig.h
203 copy /y makejsln.v16 jpeg.sln
204 copy /y makeasln.v16 apps.sln
205 copy /y makejvcx.v16 jpeg.vcxproj
206 copy /y makejfil.v16 jpeg.vcxproj.filters
207 copy /y makecvcx.v16 cjpeg.vcxproj
208 copy /y makecfil.v16 cjpeg.vcxproj.filters
209 copy /y makedvcx.v16 djpeg.vcxproj
210 copy /y makedfil.v16 djpeg.vcxproj.filters
211 copy /y maketvcx.v16 jpegtran.vcxproj
212 copy /y maketfil.v16 jpegtran.vcxproj.filters
213 copy /y makervcx.v16 rdjpgcom.vcxproj
214 copy /y makerfil.v16 rdjpgcom.vcxproj.filters
215 copy /y makewvcx.v16 wrjpgcom.vcxproj
216 copy /y makewfil.v16 wrjpgcom.vcxproj.filters
217
218 test:
219 IF EXIST testout* $(RM) testout*
220 .\djpeg -dct int -ppm -outfile testout.ppm testorig.jpg
221 .\djpeg -dct int -gif -outfile testout.gif testorig.jpg
222 .\djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg
223 .\cjpeg -dct int -outfile testout.jpg testimg.ppm
224 .\djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
225 .\cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
226 .\jpegtran -outfile testoutt.jpg testprog.jpg
227 fc /b testimg.ppm testout.ppm
228 fc /b testimg.gif testout.gif
229 fc /b testimg.bmp testout.bmp
230 fc /b testimg.jpg testout.jpg
231 fc /b testimg.ppm testoutp.ppm
232 fc /b testimgp.jpg testoutp.jpg
233 fc /b testorig.jpg testoutt.jpg
234
235 test-build:
236 IF EXIST .\Release\testout* $(RM) .\Release\testout*
237 .\Release\djpeg -dct int -ppm -outfile .\Release\testout.ppm testorig.jpg
238 .\Release\djpeg -dct int -gif -outfile .\Release\testout.gif testorig.jpg
239 .\Release\djpeg -dct int -bmp -colors 256 -outfile .\Release\testout.bmp testorig.jpg
240 .\Release\cjpeg -dct int -outfile .\Release\testout.jpg testimg.ppm
241 .\Release\djpeg -dct int -ppm -outfile .\Release\testoutp.ppm testprog.jpg
242 .\Release\cjpeg -dct int -progressive -opt -outfile .\Release\testoutp.jpg testimg.ppm
243 .\Release\jpegtran -outfile .\Release\testoutt.jpg testprog.jpg
244 fc /b testimg.ppm .\Release\testout.ppm
245 fc /b testimg.gif .\Release\testout.gif
246 fc /b testimg.bmp .\Release\testout.bmp
247 fc /b testimg.jpg .\Release\testout.jpg
248 fc /b testimg.ppm .\Release\testoutp.ppm
249 fc /b testimgp.jpg .\Release\testoutp.jpg
250 fc /b testorig.jpg .\Release\testoutt.jpg
251
252 test-32:
253 IF EXIST .\Release\testout* $(RM) .\Release\testout*
254 .\Release\Win32\djpeg -dct int -ppm -outfile .\Release\testout.ppm testorig.jpg
255 .\Release\Win32\djpeg -dct int -gif -outfile .\Release\testout.gif testorig.jpg
256 .\Release\Win32\djpeg -dct int -bmp -colors 256 -outfile .\Release\testout.bmp testorig.jpg
257 .\Release\Win32\cjpeg -dct int -outfile .\Release\testout.jpg testimg.ppm
258 .\Release\Win32\djpeg -dct int -ppm -outfile .\Release\testoutp.ppm testprog.jpg
259 .\Release\Win32\cjpeg -dct int -progressive -opt -outfile .\Release\testoutp.jpg testimg.ppm
260 .\Release\Win32\jpegtran -outfile .\Release\testoutt.jpg testprog.jpg
261 fc /b testimg.ppm .\Release\testout.ppm
262 fc /b testimg.gif .\Release\testout.gif
263 fc /b testimg.bmp .\Release\testout.bmp
264 fc /b testimg.jpg .\Release\testout.jpg
265 fc /b testimg.ppm .\Release\testoutp.ppm
266 fc /b testimgp.jpg .\Release\testoutp.jpg
267 fc /b testorig.jpg .\Release\testoutt.jpg
268
269 test-64:
270 IF EXIST .\Release\testout* $(RM) .\Release\testout*
271 .\Release\x64\djpeg -dct int -ppm -outfile .\Release\testout.ppm testorig.jpg
272 .\Release\x64\djpeg -dct int -gif -outfile .\Release\testout.gif testorig.jpg
273 .\Release\x64\djpeg -dct int -bmp -colors 256 -outfile .\Release\testout.bmp testorig.jpg
274 .\Release\x64\cjpeg -dct int -outfile .\Release\testout.jpg testimg.ppm
275 .\Release\x64\djpeg -dct int -ppm -outfile .\Release\testoutp.ppm testprog.jpg
276 .\Release\x64\cjpeg -dct int -progressive -opt -outfile .\Release\testoutp.jpg testimg.ppm
277 .\Release\x64\jpegtran -outfile .\Release\testoutt.jpg testprog.jpg
278 fc /b testimg.ppm .\Release\testout.ppm
279 fc /b testimg.gif .\Release\testout.gif
280 fc /b testimg.bmp .\Release\testout.bmp
281 fc /b testimg.jpg .\Release\testout.jpg
282 fc /b testimg.ppm .\Release\testoutp.ppm
283 fc /b testimgp.jpg .\Release\testoutp.jpg
284 fc /b testorig.jpg .\Release\testoutt.jpg
285
286
287 jaricom.obj: jaricom.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
288 jcapimin.obj: jcapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
289 jcapistd.obj: jcapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
290 jcarith.obj: jcarith.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
291 jccoefct.obj: jccoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
292 jccolor.obj: jccolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
293 jcdctmgr.obj: jcdctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
294 jchuff.obj: jchuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
295 jcinit.obj: jcinit.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
296 jcmainct.obj: jcmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
297 jcmarker.obj: jcmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
298 jcmaster.obj: jcmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
299 jcomapi.obj: jcomapi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
300 jcparam.obj: jcparam.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
301 jcprepct.obj: jcprepct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
302 jcsample.obj: jcsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
303 jctrans.obj: jctrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
304 jdapimin.obj: jdapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
305 jdapistd.obj: jdapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
306 jdarith.obj: jdarith.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
307 jdatadst.obj: jdatadst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
308 jdatasrc.obj: jdatasrc.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
309 jdcoefct.obj: jdcoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
310 jdcolor.obj: jdcolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
311 jddctmgr.obj: jddctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
312 jdhuff.obj: jdhuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
313 jdinput.obj: jdinput.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
314 jdmainct.obj: jdmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
315 jdmarker.obj: jdmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
316 jdmaster.obj: jdmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
317 jdmerge.obj: jdmerge.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
318 jdpostct.obj: jdpostct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
319 jdsample.obj: jdsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
320 jdtrans.obj: jdtrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
321 jerror.obj: jerror.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jversion.h jerror.h
322 jfdctflt.obj: jfdctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
323 jfdctfst.obj: jfdctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
324 jfdctint.obj: jfdctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
325 jidctflt.obj: jidctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
326 jidctfst.obj: jidctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
327 jidctint.obj: jidctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
328 jquant1.obj: jquant1.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
329 jquant2.obj: jquant2.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
330 jutils.obj: jutils.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
331 jmemmgr.obj: jmemmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
332 jmemansi.obj: jmemansi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
333 jmemname.obj: jmemname.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
334 jmemnobs.obj: jmemnobs.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
335 jmemdos.obj: jmemdos.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
336 jmemmac.obj: jmemmac.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
337 cjpeg.obj: cjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
338 djpeg.obj: djpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
339 jpegtran.obj: jpegtran.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h transupp.h jversion.h
340 rdjpgcom.obj: rdjpgcom.c jinclude.h jconfig.h
341 wrjpgcom.obj: wrjpgcom.c jinclude.h jconfig.h
342 cdjpeg.obj: cdjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
343 rdcolmap.obj: rdcolmap.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
344 rdswitch.obj: rdswitch.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
345 transupp.obj: transupp.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h transupp.h
346 rdppm.obj: rdppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
347 wrppm.obj: wrppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
348 rdgif.obj: rdgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
349 wrgif.obj: wrgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
350 rdtarga.obj: rdtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
351 wrtarga.obj: wrtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
352 rdbmp.obj: rdbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
353 wrbmp.obj: wrbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
354 rdrle.obj: rdrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
355 wrrle.obj: wrrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h