makefile.b32 19 KB

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