makefile.vc 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. # Makefile for Independent JPEG Group's software
  2. # This makefile is for Microsoft Visual C++ on Windows 9x or NT.
  3. # It builds the IJG library as a statically linkable library (.LIB),
  4. # and builds the sample applications as console-mode apps.
  5. # Thanks to Xingong Chang, Raymond Everly and others.
  6. # Read installation instructions before saying "nmake" !!
  7. # To build an optimized library without debug info, say "nmake nodebug=1".
  8. # Pull in standard variable definitions
  9. !include <win32.mak>
  10. # You may want to adjust these compiler options:
  11. CFLAGS= $(cflags) $(cdebug) $(cvars) -I.
  12. # Generally, we recommend defining any configuration symbols in jconfig.h,
  13. # NOT via -D switches here.
  14. # Link-time options:
  15. LDFLAGS= $(ldebug) $(conlflags)
  16. # To link any special libraries, add the necessary commands here.
  17. LDLIBS= $(conlibs)
  18. # Put here the object file name for the correct system-dependent memory
  19. # manager file. For NT we suggest jmemnobs.obj, which expects the OS to
  20. # provide adequate virtual memory.
  21. SYSDEPMEM= jmemnobs.obj
  22. # miscellaneous OS-dependent stuff
  23. # file deletion command
  24. RM= del
  25. # End of configurable options.
  26. # source files: JPEG library proper
  27. LIBSOURCES= jaricom.c jcapimin.c jcapistd.c jcarith.c jccoefct.c jccolor.c \
  28. jcdctmgr.c jchuff.c jcinit.c jcmainct.c jcmarker.c jcmaster.c \
  29. jcomapi.c jcparam.c jcprepct.c jcsample.c jctrans.c jdapimin.c \
  30. jdapistd.c jdarith.c jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c \
  31. jddctmgr.c jdhuff.c jdinput.c jdmainct.c jdmarker.c jdmaster.c \
  32. jdmerge.c jdpostct.c jdsample.c jdtrans.c jerror.c jfdctflt.c \
  33. jfdctfst.c jfdctint.c jidctflt.c jidctfst.c jidctint.c jquant1.c \
  34. jquant2.c jutils.c jmemmgr.c
  35. # memmgr back ends: compile only one of these into a working library
  36. SYSDEPSOURCES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemmac.c
  37. # source files: cjpeg/djpeg/jpegtran applications, also rdjpgcom/wrjpgcom
  38. APPSOURCES= cjpeg.c djpeg.c jpegtran.c rdjpgcom.c wrjpgcom.c cdjpeg.c \
  39. rdcolmap.c rdswitch.c transupp.c rdppm.c wrppm.c rdgif.c wrgif.c \
  40. rdtarga.c wrtarga.c rdbmp.c wrbmp.c rdrle.c wrrle.c
  41. SOURCES= $(LIBSOURCES) $(SYSDEPSOURCES) $(APPSOURCES)
  42. # files included by source files
  43. INCLUDES= jdct.h jerror.h jinclude.h jmemsys.h jmorecfg.h jpegint.h \
  44. jpeglib.h jversion.h cdjpeg.h cderror.h transupp.h
  45. # documentation, test, and support files
  46. DOCS= README install.txt usage.txt cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 \
  47. wrjpgcom.1 wizard.txt example.c libjpeg.txt structure.txt \
  48. coderules.txt filelist.txt cdaltui.txt change.log
  49. MKFILES= configure Makefile.in makefile.ansi makefile.unix makefile.xc \
  50. makefile.bcc makefile.b32 makefile.c32 makefile.d32 makefile.x32 \
  51. makefile.b64 makefile.mc6 makefile.dj makefile.wat makefile.vc \
  52. makefile.vs makejdsw.vc6 makeadsw.vc6 makejdep.vc6 makejdsp.vc6 \
  53. makejmak.vc6 makecdep.vc6 makecdsp.vc6 makecmak.vc6 makeddep.vc6 \
  54. makeddsp.vc6 makedmak.vc6 maketdep.vc6 maketdsp.vc6 maketmak.vc6 \
  55. makerdep.vc6 makerdsp.vc6 makermak.vc6 makewdep.vc6 makewdsp.vc6 \
  56. makewmak.vc6 makejsln.v16 makeasln.v16 makejvcx.v16 makejfil.v16 \
  57. makecvcx.v16 makecfil.v16 makedvcx.v16 makedfil.v16 maketvcx.v16 \
  58. maketfil.v16 makervcx.v16 makerfil.v16 makewvcx.v16 makewfil.v16 \
  59. makajpeg.bcb makcjpeg.bcb makdjpeg.bcb makljpeg.bcb makrjpeg.bcb \
  60. maktjpeg.bcb makwjpeg.bcb makcjpeg.st makdjpeg.st makljpeg.st \
  61. maktjpeg.st makeproj.mac makefile.manx makefile.sas makefile.mms \
  62. makefile.vms makvms.opt
  63. CONFIGFILES= jconfig.cfg jconfig.xc jconfig.bcc jconfig.mc6 jconfig.dj \
  64. jconfig.wat jconfig.vc jconfig.mac jconfig.st jconfig.manx \
  65. jconfig.sas jconfig.vms
  66. CONFIGUREFILES= config.guess config.sub install-sh ltmain.sh depcomp \
  67. missing ar-lib
  68. OTHERFILES= jconfig.txt ckconfig.c jmemdosa.asm libjpeg.map libjpeg.pc.in \
  69. cjpegalt.c djpegalt.c
  70. TESTFILES= testorig.jpg testimg.ppm testimg.gif testimg.bmp testimg.jpg \
  71. testprog.jpg testimgp.jpg
  72. DISTFILES= $(DOCS) $(MKFILES) $(CONFIGFILES) $(SOURCES) $(INCLUDES) \
  73. $(CONFIGUREFILES) $(OTHERFILES) $(TESTFILES)
  74. # library object files common to compression and decompression
  75. COMOBJECTS= jaricom.obj jcomapi.obj jutils.obj jerror.obj jmemmgr.obj $(SYSDEPMEM)
  76. # compression library object files
  77. CLIBOBJECTS= jcapimin.obj jcapistd.obj jcarith.obj jctrans.obj jcparam.obj \
  78. jdatadst.obj jcinit.obj jcmaster.obj jcmarker.obj jcmainct.obj \
  79. jcprepct.obj jccoefct.obj jccolor.obj jcsample.obj jchuff.obj \
  80. jcdctmgr.obj jfdctfst.obj jfdctflt.obj jfdctint.obj
  81. # decompression library object files
  82. DLIBOBJECTS= jdapimin.obj jdapistd.obj jdarith.obj jdtrans.obj jdatasrc.obj \
  83. jdmaster.obj jdinput.obj jdmarker.obj jdhuff.obj jdmainct.obj \
  84. jdcoefct.obj jdpostct.obj jddctmgr.obj jidctfst.obj jidctflt.obj \
  85. jidctint.obj jdsample.obj jdcolor.obj jquant1.obj jquant2.obj \
  86. jdmerge.obj
  87. # These objectfiles are included in libjpeg.lib
  88. LIBOBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
  89. # object files for sample applications (excluding library files)
  90. COBJECTS= cjpeg.obj rdppm.obj rdgif.obj rdtarga.obj rdrle.obj rdbmp.obj \
  91. rdswitch.obj cdjpeg.obj
  92. DOBJECTS= djpeg.obj wrppm.obj wrgif.obj wrtarga.obj wrrle.obj wrbmp.obj \
  93. rdcolmap.obj cdjpeg.obj
  94. TROBJECTS= jpegtran.obj rdswitch.obj cdjpeg.obj transupp.obj
  95. # Template command for compiling .c to .obj
  96. .c.obj:
  97. $(cc) $(CFLAGS) $*.c
  98. all: libjpeg.lib cjpeg.exe djpeg.exe jpegtran.exe rdjpgcom.exe wrjpgcom.exe
  99. libjpeg.lib: $(LIBOBJECTS)
  100. $(RM) libjpeg.lib
  101. lib -out:libjpeg.lib $(LIBOBJECTS)
  102. cjpeg.exe: $(COBJECTS) libjpeg.lib
  103. $(link) $(LDFLAGS) -out:cjpeg.exe $(COBJECTS) libjpeg.lib $(LDLIBS)
  104. djpeg.exe: $(DOBJECTS) libjpeg.lib
  105. $(link) $(LDFLAGS) -out:djpeg.exe $(DOBJECTS) libjpeg.lib $(LDLIBS)
  106. jpegtran.exe: $(TROBJECTS) libjpeg.lib
  107. $(link) $(LDFLAGS) -out:jpegtran.exe $(TROBJECTS) libjpeg.lib $(LDLIBS)
  108. rdjpgcom.exe: rdjpgcom.obj
  109. $(link) $(LDFLAGS) -out:rdjpgcom.exe rdjpgcom.obj $(LDLIBS)
  110. wrjpgcom.exe: wrjpgcom.obj
  111. $(link) $(LDFLAGS) -out:wrjpgcom.exe wrjpgcom.obj $(LDLIBS)
  112. clean:
  113. $(RM) *.obj *.exe libjpeg.lib
  114. $(RM) testout*
  115. setup-vc6:
  116. if not exist jconfig.h ren jconfig.vc jconfig.h
  117. ren makejdsw.vc6 jpeg.dsw
  118. ren makeadsw.vc6 apps.dsw
  119. ren makejmak.vc6 jpeg.mak
  120. ren makejdep.vc6 jpeg.dep
  121. ren makejdsp.vc6 jpeg.dsp
  122. ren makecmak.vc6 cjpeg.mak
  123. ren makecdep.vc6 cjpeg.dep
  124. ren makecdsp.vc6 cjpeg.dsp
  125. ren makedmak.vc6 djpeg.mak
  126. ren makeddep.vc6 djpeg.dep
  127. ren makeddsp.vc6 djpeg.dsp
  128. ren maketmak.vc6 jpegtran.mak
  129. ren maketdep.vc6 jpegtran.dep
  130. ren maketdsp.vc6 jpegtran.dsp
  131. ren makermak.vc6 rdjpgcom.mak
  132. ren makerdep.vc6 rdjpgcom.dep
  133. ren makerdsp.vc6 rdjpgcom.dsp
  134. ren makewmak.vc6 wrjpgcom.mak
  135. ren makewdep.vc6 wrjpgcom.dep
  136. ren makewdsp.vc6 wrjpgcom.dsp
  137. setupcopy-vc6:
  138. copy /y jconfig.vc jconfig.h
  139. copy /y makejdsw.vc6 jpeg.dsw
  140. copy /y makeadsw.vc6 apps.dsw
  141. copy /y makejmak.vc6 jpeg.mak
  142. copy /y makejdep.vc6 jpeg.dep
  143. copy /y makejdsp.vc6 jpeg.dsp
  144. copy /y makecmak.vc6 cjpeg.mak
  145. copy /y makecdep.vc6 cjpeg.dep
  146. copy /y makecdsp.vc6 cjpeg.dsp
  147. copy /y makedmak.vc6 djpeg.mak
  148. copy /y makeddep.vc6 djpeg.dep
  149. copy /y makeddsp.vc6 djpeg.dsp
  150. copy /y maketmak.vc6 jpegtran.mak
  151. copy /y maketdep.vc6 jpegtran.dep
  152. copy /y maketdsp.vc6 jpegtran.dsp
  153. copy /y makermak.vc6 rdjpgcom.mak
  154. copy /y makerdep.vc6 rdjpgcom.dep
  155. copy /y makerdsp.vc6 rdjpgcom.dsp
  156. copy /y makewmak.vc6 wrjpgcom.mak
  157. copy /y makewdep.vc6 wrjpgcom.dep
  158. copy /y makewdsp.vc6 wrjpgcom.dsp
  159. setup-v16:
  160. if not exist jconfig.h ren jconfig.vc jconfig.h
  161. ren makejsln.v16 jpeg.sln
  162. ren makeasln.v16 apps.sln
  163. ren makejvcx.v16 jpeg.vcxproj
  164. ren makejfil.v16 jpeg.vcxproj.filters
  165. ren makecvcx.v16 cjpeg.vcxproj
  166. ren makecfil.v16 cjpeg.vcxproj.filters
  167. ren makedvcx.v16 djpeg.vcxproj
  168. ren makedfil.v16 djpeg.vcxproj.filters
  169. ren maketvcx.v16 jpegtran.vcxproj
  170. ren maketfil.v16 jpegtran.vcxproj.filters
  171. ren makervcx.v16 rdjpgcom.vcxproj
  172. ren makerfil.v16 rdjpgcom.vcxproj.filters
  173. ren makewvcx.v16 wrjpgcom.vcxproj
  174. ren makewfil.v16 wrjpgcom.vcxproj.filters
  175. setupcopy-v16:
  176. copy /y jconfig.vc jconfig.h
  177. copy /y makejsln.v16 jpeg.sln
  178. copy /y makeasln.v16 apps.sln
  179. copy /y makejvcx.v16 jpeg.vcxproj
  180. copy /y makejfil.v16 jpeg.vcxproj.filters
  181. copy /y makecvcx.v16 cjpeg.vcxproj
  182. copy /y makecfil.v16 cjpeg.vcxproj.filters
  183. copy /y makedvcx.v16 djpeg.vcxproj
  184. copy /y makedfil.v16 djpeg.vcxproj.filters
  185. copy /y maketvcx.v16 jpegtran.vcxproj
  186. copy /y maketfil.v16 jpegtran.vcxproj.filters
  187. copy /y makervcx.v16 rdjpgcom.vcxproj
  188. copy /y makerfil.v16 rdjpgcom.vcxproj.filters
  189. copy /y makewvcx.v16 wrjpgcom.vcxproj
  190. copy /y makewfil.v16 wrjpgcom.vcxproj.filters
  191. test:
  192. IF EXIST testout* $(RM) testout*
  193. .\djpeg -dct int -ppm -outfile testout.ppm testorig.jpg
  194. .\djpeg -dct int -gif -outfile testout.gif testorig.jpg
  195. .\djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg
  196. .\cjpeg -dct int -outfile testout.jpg testimg.ppm
  197. .\djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
  198. .\cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
  199. .\jpegtran -outfile testoutt.jpg testprog.jpg
  200. fc /b testimg.ppm testout.ppm
  201. fc /b testimg.gif testout.gif
  202. fc /b testimg.bmp testout.bmp
  203. fc /b testimg.jpg testout.jpg
  204. fc /b testimg.ppm testoutp.ppm
  205. fc /b testimgp.jpg testoutp.jpg
  206. fc /b testorig.jpg testoutt.jpg
  207. test-build:
  208. IF EXIST .\Release\testout* $(RM) .\Release\testout*
  209. .\Release\djpeg -dct int -ppm -outfile .\Release\testout.ppm testorig.jpg
  210. .\Release\djpeg -dct int -gif -outfile .\Release\testout.gif testorig.jpg
  211. .\Release\djpeg -dct int -bmp -colors 256 -outfile .\Release\testout.bmp testorig.jpg
  212. .\Release\cjpeg -dct int -outfile .\Release\testout.jpg testimg.ppm
  213. .\Release\djpeg -dct int -ppm -outfile .\Release\testoutp.ppm testprog.jpg
  214. .\Release\cjpeg -dct int -progressive -opt -outfile .\Release\testoutp.jpg testimg.ppm
  215. .\Release\jpegtran -outfile .\Release\testoutt.jpg testprog.jpg
  216. fc /b testimg.ppm .\Release\testout.ppm
  217. fc /b testimg.gif .\Release\testout.gif
  218. fc /b testimg.bmp .\Release\testout.bmp
  219. fc /b testimg.jpg .\Release\testout.jpg
  220. fc /b testimg.ppm .\Release\testoutp.ppm
  221. fc /b testimgp.jpg .\Release\testoutp.jpg
  222. fc /b testorig.jpg .\Release\testoutt.jpg
  223. test-32:
  224. IF EXIST .\Release\testout* $(RM) .\Release\testout*
  225. .\Release\Win32\djpeg -dct int -ppm -outfile .\Release\testout.ppm testorig.jpg
  226. .\Release\Win32\djpeg -dct int -gif -outfile .\Release\testout.gif testorig.jpg
  227. .\Release\Win32\djpeg -dct int -bmp -colors 256 -outfile .\Release\testout.bmp testorig.jpg
  228. .\Release\Win32\cjpeg -dct int -outfile .\Release\testout.jpg testimg.ppm
  229. .\Release\Win32\djpeg -dct int -ppm -outfile .\Release\testoutp.ppm testprog.jpg
  230. .\Release\Win32\cjpeg -dct int -progressive -opt -outfile .\Release\testoutp.jpg testimg.ppm
  231. .\Release\Win32\jpegtran -outfile .\Release\testoutt.jpg testprog.jpg
  232. fc /b testimg.ppm .\Release\testout.ppm
  233. fc /b testimg.gif .\Release\testout.gif
  234. fc /b testimg.bmp .\Release\testout.bmp
  235. fc /b testimg.jpg .\Release\testout.jpg
  236. fc /b testimg.ppm .\Release\testoutp.ppm
  237. fc /b testimgp.jpg .\Release\testoutp.jpg
  238. fc /b testorig.jpg .\Release\testoutt.jpg
  239. test-64:
  240. IF EXIST .\Release\testout* $(RM) .\Release\testout*
  241. .\Release\x64\djpeg -dct int -ppm -outfile .\Release\testout.ppm testorig.jpg
  242. .\Release\x64\djpeg -dct int -gif -outfile .\Release\testout.gif testorig.jpg
  243. .\Release\x64\djpeg -dct int -bmp -colors 256 -outfile .\Release\testout.bmp testorig.jpg
  244. .\Release\x64\cjpeg -dct int -outfile .\Release\testout.jpg testimg.ppm
  245. .\Release\x64\djpeg -dct int -ppm -outfile .\Release\testoutp.ppm testprog.jpg
  246. .\Release\x64\cjpeg -dct int -progressive -opt -outfile .\Release\testoutp.jpg testimg.ppm
  247. .\Release\x64\jpegtran -outfile .\Release\testoutt.jpg testprog.jpg
  248. fc /b testimg.ppm .\Release\testout.ppm
  249. fc /b testimg.gif .\Release\testout.gif
  250. fc /b testimg.bmp .\Release\testout.bmp
  251. fc /b testimg.jpg .\Release\testout.jpg
  252. fc /b testimg.ppm .\Release\testoutp.ppm
  253. fc /b testimgp.jpg .\Release\testoutp.jpg
  254. fc /b testorig.jpg .\Release\testoutt.jpg
  255. jaricom.obj: jaricom.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  256. jcapimin.obj: jcapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  257. jcapistd.obj: jcapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  258. jcarith.obj: jcarith.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  259. jccoefct.obj: jccoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  260. jccolor.obj: jccolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  261. jcdctmgr.obj: jcdctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  262. jchuff.obj: jchuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  263. jcinit.obj: jcinit.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  264. jcmainct.obj: jcmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  265. jcmarker.obj: jcmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  266. jcmaster.obj: jcmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  267. jcomapi.obj: jcomapi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  268. jcparam.obj: jcparam.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  269. jcprepct.obj: jcprepct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  270. jcsample.obj: jcsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  271. jctrans.obj: jctrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  272. jdapimin.obj: jdapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  273. jdapistd.obj: jdapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  274. jdarith.obj: jdarith.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  275. jdatadst.obj: jdatadst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
  276. jdatasrc.obj: jdatasrc.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
  277. jdcoefct.obj: jdcoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  278. jdcolor.obj: jdcolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  279. jddctmgr.obj: jddctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  280. jdhuff.obj: jdhuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  281. jdinput.obj: jdinput.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  282. jdmainct.obj: jdmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  283. jdmarker.obj: jdmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  284. jdmaster.obj: jdmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  285. jdmerge.obj: jdmerge.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  286. jdpostct.obj: jdpostct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  287. jdsample.obj: jdsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  288. jdtrans.obj: jdtrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  289. jerror.obj: jerror.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jversion.h jerror.h
  290. jfdctflt.obj: jfdctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  291. jfdctfst.obj: jfdctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  292. jfdctint.obj: jfdctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  293. jidctflt.obj: jidctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  294. jidctfst.obj: jidctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  295. jidctint.obj: jidctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  296. jquant1.obj: jquant1.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  297. jquant2.obj: jquant2.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  298. jutils.obj: jutils.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  299. jmemmgr.obj: jmemmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  300. jmemansi.obj: jmemansi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  301. jmemname.obj: jmemname.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  302. jmemnobs.obj: jmemnobs.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  303. jmemdos.obj: jmemdos.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  304. jmemmac.obj: jmemmac.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  305. cjpeg.obj: cjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
  306. djpeg.obj: djpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
  307. jpegtran.obj: jpegtran.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h transupp.h jversion.h
  308. rdjpgcom.obj: rdjpgcom.c jinclude.h jconfig.h
  309. wrjpgcom.obj: wrjpgcom.c jinclude.h jconfig.h
  310. cdjpeg.obj: cdjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  311. rdcolmap.obj: rdcolmap.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  312. rdswitch.obj: rdswitch.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  313. transupp.obj: transupp.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h transupp.h
  314. rdppm.obj: rdppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  315. wrppm.obj: wrppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  316. rdgif.obj: rdgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  317. wrgif.obj: wrgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  318. rdtarga.obj: rdtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  319. wrtarga.obj: wrtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  320. rdbmp.obj: rdbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  321. wrbmp.obj: wrbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  322. rdrle.obj: rdrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  323. wrrle.obj: wrrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h