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