Mercurial > hgrepos > Python2 > PyMuPDF
comparison mupdf-source/thirdparty/libjpeg/makefile.b32 @ 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 suitable for Embarcadero C++ for Win32 (classic Borland). | |
| 4 # Tested with version 7.50-7.60 (1993-2017), | |
| 5 # Embarcadero MAKE Version 5.43 (1987-2019), | |
| 6 # Embarcadero C++Builder 10.4-11 Version 27.0-28.0 (2021-2023). | |
| 7 # Thanks to Tom Wright and Ge' Weijers (original DOS) and | |
| 8 # Joe Slater for 32-bit modifications (needed for Borland revision 5.5). | |
| 9 | |
| 10 # Read installation instructions in install.txt before saying "make", | |
| 11 # or use either | |
| 12 # make -fmakefile.b32 setup | |
| 13 # or | |
| 14 # make -fmakefile.b32 setupcopy | |
| 15 # before saying | |
| 16 # make -fmakefile.b32 | |
| 17 # Test: | |
| 18 # make -fmakefile.b32 test | |
| 19 # Clean: | |
| 20 # make -fmakefile.b32 clean | |
| 21 # | |
| 22 # For use with C++Builder, multi Config/Platform support: | |
| 23 # Setup either | |
| 24 # make -fmakefile.b32 setup-cb | |
| 25 # or | |
| 26 # make -fmakefile.b32 setupcopy-cb | |
| 27 # Test: | |
| 28 # make -fmakefile.b32 test-32 | |
| 29 # make -fmakefile.b32 test-64 | |
| 30 | |
| 31 # The name of your C compiler: | |
| 32 CC= bcc32 | |
| 33 | |
| 34 # You may need to adjust these cc options: | |
| 35 CFLAGS= -O2 -w -w-aus -w-ccc -w-par -w-rch -w-sig | |
| 36 # -O1 Generate smallest possible code | |
| 37 # -O2 Generate fastest possible code | |
| 38 # -w Display all warnings | |
| 39 # -waus 8004 '%s' is assigned a value that is never used | |
| 40 # -wccc 8008 Condition is always %s | |
| 41 # -wpar 8057 Parameter '%s' is never used | |
| 42 # -wrch 8066 Unreachable code | |
| 43 # -wsig 8071 Conversion may lose significant digits | |
| 44 # Generally, we recommend defining any configuration symbols in jconfig.h, | |
| 45 # NOT via -D switches here. | |
| 46 | |
| 47 # Link-time cc options: | |
| 48 LDFLAGS= | |
| 49 # -lc case-significant link | |
| 50 | |
| 51 # Put here the object file name for the correct system-dependent memory | |
| 52 # manager file. | |
| 53 # SYSDEPMEMLIB must list the same files with "+" signs for the librarian. | |
| 54 SYSDEPMEM= jmemnobs.obj | |
| 55 SYSDEPMEMLIB= +jmemnobs.obj | |
| 56 | |
| 57 # End of configurable options. | |
| 58 | |
| 59 | |
| 60 # source files: JPEG library proper | |
| 61 LIBSOURCES= jaricom.c jcapimin.c jcapistd.c jcarith.c jccoefct.c jccolor.c \ | |
| 62 jcdctmgr.c jchuff.c jcinit.c jcmainct.c jcmarker.c jcmaster.c \ | |
| 63 jcomapi.c jcparam.c jcprepct.c jcsample.c jctrans.c jdapimin.c \ | |
| 64 jdapistd.c jdarith.c jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c \ | |
| 65 jddctmgr.c jdhuff.c jdinput.c jdmainct.c jdmarker.c jdmaster.c \ | |
| 66 jdmerge.c jdpostct.c jdsample.c jdtrans.c jerror.c jfdctflt.c \ | |
| 67 jfdctfst.c jfdctint.c jidctflt.c jidctfst.c jidctint.c jquant1.c \ | |
| 68 jquant2.c jutils.c jmemmgr.c | |
| 69 # memmgr back ends: compile only one of these into a working library | |
| 70 SYSDEPSOURCES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemmac.c | |
| 71 # source files: cjpeg/djpeg/jpegtran applications, also rdjpgcom/wrjpgcom | |
| 72 APPSOURCES= cjpeg.c djpeg.c jpegtran.c rdjpgcom.c wrjpgcom.c cdjpeg.c \ | |
| 73 rdcolmap.c rdswitch.c transupp.c rdppm.c wrppm.c rdgif.c wrgif.c \ | |
| 74 rdtarga.c wrtarga.c rdbmp.c wrbmp.c rdrle.c wrrle.c | |
| 75 SOURCES= $(LIBSOURCES) $(SYSDEPSOURCES) $(APPSOURCES) | |
| 76 # files included by source files | |
| 77 INCLUDES= jdct.h jerror.h jinclude.h jmemsys.h jmorecfg.h jpegint.h \ | |
| 78 jpeglib.h jversion.h cdjpeg.h cderror.h transupp.h | |
| 79 # documentation, test, and support files | |
| 80 DOCS= README install.txt usage.txt cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 \ | |
| 81 wrjpgcom.1 wizard.txt example.c libjpeg.txt structure.txt \ | |
| 82 coderules.txt filelist.txt cdaltui.txt change.log | |
| 83 MKFILES= configure Makefile.in makefile.ansi makefile.unix makefile.xc \ | |
| 84 makefile.bcc makefile.b32 makefile.c32 makefile.d32 makefile.x32 \ | |
| 85 makefile.b64 makefile.mc6 makefile.dj makefile.wat makefile.vc \ | |
| 86 makefile.vs makejdsw.vc6 makeadsw.vc6 makejdep.vc6 makejdsp.vc6 \ | |
| 87 makejmak.vc6 makecdep.vc6 makecdsp.vc6 makecmak.vc6 makeddep.vc6 \ | |
| 88 makeddsp.vc6 makedmak.vc6 maketdep.vc6 maketdsp.vc6 maketmak.vc6 \ | |
| 89 makerdep.vc6 makerdsp.vc6 makermak.vc6 makewdep.vc6 makewdsp.vc6 \ | |
| 90 makewmak.vc6 makejsln.v16 makeasln.v16 makejvcx.v16 makejfil.v16 \ | |
| 91 makecvcx.v16 makecfil.v16 makedvcx.v16 makedfil.v16 maketvcx.v16 \ | |
| 92 maketfil.v16 makervcx.v16 makerfil.v16 makewvcx.v16 makewfil.v16 \ | |
| 93 makajpeg.bcb makcjpeg.bcb makdjpeg.bcb makljpeg.bcb makrjpeg.bcb \ | |
| 94 maktjpeg.bcb makwjpeg.bcb makcjpeg.st makdjpeg.st makljpeg.st \ | |
| 95 maktjpeg.st makeproj.mac makefile.manx makefile.sas makefile.mms \ | |
| 96 makefile.vms makvms.opt | |
| 97 CONFIGFILES= jconfig.cfg jconfig.xc jconfig.bcc jconfig.mc6 jconfig.dj \ | |
| 98 jconfig.wat jconfig.vc jconfig.mac jconfig.st jconfig.manx \ | |
| 99 jconfig.sas jconfig.vms | |
| 100 CONFIGUREFILES= config.guess config.sub install-sh ltmain.sh depcomp \ | |
| 101 missing ar-lib | |
| 102 OTHERFILES= jconfig.txt ckconfig.c jmemdosa.asm libjpeg.map libjpeg.pc.in \ | |
| 103 cjpegalt.c djpegalt.c | |
| 104 TESTFILES= testorig.jpg testimg.ppm testimg.gif testimg.bmp testimg.jpg \ | |
| 105 testprog.jpg testimgp.jpg | |
| 106 DISTFILES= $(DOCS) $(MKFILES) $(CONFIGFILES) $(SOURCES) $(INCLUDES) \ | |
| 107 $(CONFIGUREFILES) $(OTHERFILES) $(TESTFILES) | |
| 108 # library object files common to compression and decompression | |
| 109 COMOBJECTS= jaricom.obj jcomapi.obj jutils.obj jerror.obj jmemmgr.obj $(SYSDEPMEM) | |
| 110 # compression library object files | |
| 111 CLIBOBJECTS= jcapimin.obj jcapistd.obj jcarith.obj jctrans.obj jcparam.obj \ | |
| 112 jdatadst.obj jcinit.obj jcmaster.obj jcmarker.obj jcmainct.obj \ | |
| 113 jcprepct.obj jccoefct.obj jccolor.obj jcsample.obj jchuff.obj \ | |
| 114 jcdctmgr.obj jfdctfst.obj jfdctflt.obj jfdctint.obj | |
| 115 # decompression library object files | |
| 116 DLIBOBJECTS= jdapimin.obj jdapistd.obj jdarith.obj jdtrans.obj jdatasrc.obj \ | |
| 117 jdmaster.obj jdinput.obj jdmarker.obj jdhuff.obj jdmainct.obj \ | |
| 118 jdcoefct.obj jdpostct.obj jddctmgr.obj jidctfst.obj jidctflt.obj \ | |
| 119 jidctint.obj jdsample.obj jdcolor.obj jquant1.obj jquant2.obj \ | |
| 120 jdmerge.obj | |
| 121 # These objectfiles are included in libjpeg.lib | |
| 122 LIBOBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS) | |
| 123 # object files for sample applications (excluding library files) | |
| 124 COBJECTS= cjpeg.obj rdppm.obj rdgif.obj rdtarga.obj rdrle.obj rdbmp.obj \ | |
| 125 rdswitch.obj cdjpeg.obj | |
| 126 DOBJECTS= djpeg.obj wrppm.obj wrgif.obj wrtarga.obj wrrle.obj wrbmp.obj \ | |
| 127 rdcolmap.obj cdjpeg.obj | |
| 128 TROBJECTS= jpegtran.obj rdswitch.obj cdjpeg.obj transupp.obj | |
| 129 | |
| 130 | |
| 131 all: libjpeg.lib cjpeg.exe djpeg.exe jpegtran.exe rdjpgcom.exe wrjpgcom.exe | |
| 132 | |
| 133 libjpeg.lib: $(LIBOBJECTS) | |
| 134 if exist libjpeg.lib del libjpeg.lib | |
| 135 tlib libjpeg.lib /E /C @&&| | |
| 136 +jcapimin.obj +jcapistd.obj +jcarith.obj +jctrans.obj +jcparam.obj & | |
| 137 +jdatadst.obj +jcinit.obj +jcmaster.obj +jcmarker.obj +jcmainct.obj & | |
| 138 +jcprepct.obj +jccoefct.obj +jccolor.obj +jcsample.obj +jchuff.obj & | |
| 139 +jcdctmgr.obj +jfdctfst.obj +jfdctflt.obj +jfdctint.obj +jdapimin.obj & | |
| 140 +jdapistd.obj +jdarith.obj +jdtrans.obj +jdatasrc.obj +jdmaster.obj & | |
| 141 +jdinput.obj +jdmarker.obj +jdhuff.obj +jdmainct.obj +jdcoefct.obj & | |
| 142 +jdpostct.obj +jddctmgr.obj +jidctfst.obj +jidctflt.obj +jidctint.obj & | |
| 143 +jdsample.obj +jdcolor.obj +jquant1.obj +jquant2.obj +jdmerge.obj & | |
| 144 +jaricom.obj +jcomapi.obj +jutils.obj +jerror.obj +jmemmgr.obj & | |
| 145 $(SYSDEPMEMLIB) | |
| 146 | | |
| 147 | |
| 148 cjpeg.exe: $(COBJECTS) libjpeg.lib | |
| 149 $(CC) $(LDFLAGS) -o cjpeg.exe $(COBJECTS) libjpeg.lib | |
| 150 | |
| 151 djpeg.exe: $(DOBJECTS) libjpeg.lib | |
| 152 $(CC) $(LDFLAGS) -o djpeg.exe $(DOBJECTS) libjpeg.lib | |
| 153 | |
| 154 jpegtran.exe: $(TROBJECTS) libjpeg.lib | |
| 155 $(CC) $(LDFLAGS) -o jpegtran.exe $(TROBJECTS) libjpeg.lib | |
| 156 | |
| 157 rdjpgcom.exe: rdjpgcom.c | |
| 158 $(CC) $(CFLAGS) rdjpgcom.c | |
| 159 | |
| 160 wrjpgcom.exe: wrjpgcom.c | |
| 161 $(CC) $(CFLAGS) wrjpgcom.c | |
| 162 | |
| 163 # This "{}" syntax allows Borland Make to "batch" source files. | |
| 164 # In this way, each run of the compiler can build many modules. | |
| 165 .c.obj: | |
| 166 $(CC) $(CFLAGS) -c{ $<} | |
| 167 | |
| 168 jconfig.h: jconfig.txt | |
| 169 @echo. | |
| 170 @echo. " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " | |
| 171 @echo. " " | |
| 172 @echo. " You must prepare a system-dependent jconfig.h file. " | |
| 173 @echo. " Please read the installation directions in install.txt, " | |
| 174 @echo. " or use either " | |
| 175 @echo. " make -fmakefile.b32 setup " | |
| 176 @echo. " or " | |
| 177 @echo. " make -fmakefile.b32 setupcopy " | |
| 178 @echo. " before saying " | |
| 179 @echo. " make -fmakefile.b32 " | |
| 180 @echo. " " | |
| 181 @echo. " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " | |
| 182 @echo. | |
| 183 exit 1 | |
| 184 | |
| 185 clean: | |
| 186 del $(LIBOBJECTS) $(COBJECTS) $(DOBJECTS) $(TROBJECTS) | |
| 187 if exist rdjpgcom.obj del rdjpgcom.obj | |
| 188 if exist wrjpgcom.obj del wrjpgcom.obj | |
| 189 del libjpeg.lib | |
| 190 del cjpeg.exe | |
| 191 del djpeg.exe | |
| 192 del jpegtran.exe | |
| 193 del rdjpgcom.exe | |
| 194 del wrjpgcom.exe | |
| 195 if exist cjpeg.tds del cjpeg.tds | |
| 196 if exist djpeg.tds del djpeg.tds | |
| 197 if exist jpegtran.tds del jpegtran.tds | |
| 198 if exist rdjpgcom.tds del rdjpgcom.tds | |
| 199 if exist wrjpgcom.tds del wrjpgcom.tds | |
| 200 if exist testout* del testout* | |
| 201 | |
| 202 setup: | |
| 203 if not exist jconfig.h ren jconfig.vc jconfig.h | |
| 204 | |
| 205 setupcopy: | |
| 206 copy /y jconfig.vc jconfig.h | |
| 207 | |
| 208 setup-cb: | |
| 209 if not exist jconfig.h ren jconfig.vc jconfig.h | |
| 210 ren makajpeg.bcb apps.groupproj | |
| 211 ren makljpeg.bcb jpeg.cbproj | |
| 212 ren makcjpeg.bcb cjpeg.cbproj | |
| 213 ren makdjpeg.bcb djpeg.cbproj | |
| 214 ren maktjpeg.bcb jpegtran.cbproj | |
| 215 ren makrjpeg.bcb rdjpgcom.cbproj | |
| 216 ren makwjpeg.bcb wrjpgcom.cbproj | |
| 217 | |
| 218 setupcopy-cb: | |
| 219 copy /y jconfig.vc jconfig.h | |
| 220 copy /y makajpeg.bcb apps.groupproj | |
| 221 copy /y makljpeg.bcb jpeg.cbproj | |
| 222 copy /y makcjpeg.bcb cjpeg.cbproj | |
| 223 copy /y makdjpeg.bcb djpeg.cbproj | |
| 224 copy /y maktjpeg.bcb jpegtran.cbproj | |
| 225 copy /y makrjpeg.bcb rdjpgcom.cbproj | |
| 226 copy /y makwjpeg.bcb wrjpgcom.cbproj | |
| 227 | |
| 228 test: cjpeg.exe djpeg.exe jpegtran.exe | |
| 229 if exist testout* del testout* | |
| 230 djpeg -dct int -ppm -outfile testout.ppm testorig.jpg | |
| 231 djpeg -dct int -gif -outfile testout.gif testorig.jpg | |
| 232 djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg | |
| 233 cjpeg -dct int -outfile testout.jpg testimg.ppm | |
| 234 djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg | |
| 235 cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm | |
| 236 jpegtran -outfile testoutt.jpg testprog.jpg | |
| 237 echo n > n.tmp | |
| 238 comp testimg.ppm testout.ppm < n.tmp | |
| 239 comp testimg.gif testout.gif < n.tmp | |
| 240 comp testimg.bmp testout.bmp < n.tmp | |
| 241 comp testimg.jpg testout.jpg < n.tmp | |
| 242 comp testimg.ppm testoutp.ppm < n.tmp | |
| 243 comp testimgp.jpg testoutp.jpg < n.tmp | |
| 244 comp testorig.jpg testoutt.jpg < n.tmp | |
| 245 del n.tmp | |
| 246 | |
| 247 test-32: | |
| 248 if exist .\Release\testout* del .\Release\testout* | |
| 249 .\Release\Win32\djpeg -dct int -ppm -outfile .\Release\testout.ppm testorig.jpg | |
| 250 .\Release\Win32\djpeg -dct int -gif -outfile .\Release\testout.gif testorig.jpg | |
| 251 .\Release\Win32\djpeg -dct int -bmp -colors 256 -outfile .\Release\testout.bmp testorig.jpg | |
| 252 .\Release\Win32\cjpeg -dct int -outfile .\Release\testout.jpg testimg.ppm | |
| 253 .\Release\Win32\djpeg -dct int -ppm -outfile .\Release\testoutp.ppm testprog.jpg | |
| 254 .\Release\Win32\cjpeg -dct int -progressive -opt -outfile .\Release\testoutp.jpg testimg.ppm | |
| 255 .\Release\Win32\jpegtran -outfile .\Release\testoutt.jpg testprog.jpg | |
| 256 echo n > n.tmp | |
| 257 comp testimg.ppm .\Release\testout.ppm < n.tmp | |
| 258 comp testimg.gif .\Release\testout.gif < n.tmp | |
| 259 comp testimg.bmp .\Release\testout.bmp < n.tmp | |
| 260 comp testimg.jpg .\Release\testout.jpg < n.tmp | |
| 261 comp testimg.ppm .\Release\testoutp.ppm < n.tmp | |
| 262 comp testimgp.jpg .\Release\testoutp.jpg < n.tmp | |
| 263 comp testorig.jpg .\Release\testoutt.jpg < n.tmp | |
| 264 del n.tmp | |
| 265 | |
| 266 test-64: | |
| 267 if exist .\Release\testout* del .\Release\testout* | |
| 268 .\Release\Win64\djpeg -dct int -ppm -outfile .\Release\testout.ppm testorig.jpg | |
| 269 .\Release\Win64\djpeg -dct int -gif -outfile .\Release\testout.gif testorig.jpg | |
| 270 .\Release\Win64\djpeg -dct int -bmp -colors 256 -outfile .\Release\testout.bmp testorig.jpg | |
| 271 .\Release\Win64\cjpeg -dct int -outfile .\Release\testout.jpg testimg.ppm | |
| 272 .\Release\Win64\djpeg -dct int -ppm -outfile .\Release\testoutp.ppm testprog.jpg | |
| 273 .\Release\Win64\cjpeg -dct int -progressive -opt -outfile .\Release\testoutp.jpg testimg.ppm | |
| 274 .\Release\Win64\jpegtran -outfile .\Release\testoutt.jpg testprog.jpg | |
| 275 echo n > n.tmp | |
| 276 comp testimg.ppm .\Release\testout.ppm < n.tmp | |
| 277 comp testimg.gif .\Release\testout.gif < n.tmp | |
| 278 comp testimg.bmp .\Release\testout.bmp < n.tmp | |
| 279 comp testimg.jpg .\Release\testout.jpg < n.tmp | |
| 280 comp testimg.ppm .\Release\testoutp.ppm < n.tmp | |
| 281 comp testimgp.jpg .\Release\testoutp.jpg < n.tmp | |
| 282 comp testorig.jpg .\Release\testoutt.jpg < n.tmp | |
| 283 del n.tmp | |
| 284 | |
| 285 | |
| 286 jaricom.obj: jaricom.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 287 jcapimin.obj: jcapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 288 jcapistd.obj: jcapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 289 jcarith.obj: jcarith.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 290 jccoefct.obj: jccoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 291 jccolor.obj: jccolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 292 jcdctmgr.obj: jcdctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h | |
| 293 jchuff.obj: jchuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 294 jcinit.obj: jcinit.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 295 jcmainct.obj: jcmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 296 jcmarker.obj: jcmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 297 jcmaster.obj: jcmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 298 jcomapi.obj: jcomapi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 299 jcparam.obj: jcparam.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 300 jcprepct.obj: jcprepct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 301 jcsample.obj: jcsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 302 jctrans.obj: jctrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 303 jdapimin.obj: jdapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 304 jdapistd.obj: jdapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 305 jdarith.obj: jdarith.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 306 jdatadst.obj: jdatadst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h | |
| 307 jdatasrc.obj: jdatasrc.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h | |
| 308 jdcoefct.obj: jdcoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 309 jdcolor.obj: jdcolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 310 jddctmgr.obj: jddctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h | |
| 311 jdhuff.obj: jdhuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 312 jdinput.obj: jdinput.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 313 jdmainct.obj: jdmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 314 jdmarker.obj: jdmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 315 jdmaster.obj: jdmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 316 jdmerge.obj: jdmerge.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 317 jdpostct.obj: jdpostct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 318 jdsample.obj: jdsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 319 jdtrans.obj: jdtrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 320 jerror.obj: jerror.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jversion.h jerror.h | |
| 321 jfdctflt.obj: jfdctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h | |
| 322 jfdctfst.obj: jfdctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h | |
| 323 jfdctint.obj: jfdctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h | |
| 324 jidctflt.obj: jidctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h | |
| 325 jidctfst.obj: jidctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h | |
| 326 jidctint.obj: jidctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h | |
| 327 jquant1.obj: jquant1.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 328 jquant2.obj: jquant2.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 329 jutils.obj: jutils.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h | |
| 330 jmemmgr.obj: jmemmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h | |
| 331 jmemansi.obj: jmemansi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h | |
| 332 jmemname.obj: jmemname.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h | |
| 333 jmemnobs.obj: jmemnobs.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h | |
| 334 jmemdos.obj: jmemdos.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h | |
| 335 jmemmac.obj: jmemmac.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h | |
| 336 cjpeg.obj: cjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h | |
| 337 djpeg.obj: djpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h | |
| 338 jpegtran.obj: jpegtran.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h transupp.h jversion.h | |
| 339 rdjpgcom.obj: rdjpgcom.c jinclude.h jconfig.h | |
| 340 wrjpgcom.obj: wrjpgcom.c jinclude.h jconfig.h | |
| 341 cdjpeg.obj: cdjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h | |
| 342 rdcolmap.obj: rdcolmap.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h | |
| 343 rdswitch.obj: rdswitch.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h | |
| 344 transupp.obj: transupp.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h transupp.h | |
| 345 rdppm.obj: rdppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h | |
| 346 wrppm.obj: wrppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h | |
| 347 rdgif.obj: rdgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h | |
| 348 wrgif.obj: wrgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h | |
| 349 rdtarga.obj: rdtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h | |
| 350 wrtarga.obj: wrtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h | |
| 351 rdbmp.obj: rdbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h | |
| 352 wrbmp.obj: wrbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h | |
| 353 rdrle.obj: rdrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h | |
| 354 wrrle.obj: wrrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h |
