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