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