makefile.c32 18 KB

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