makefile.cfg 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. # Makefile for Independent JPEG Group's software
  2. # makefile.cfg is edited by configure to produce a custom Makefile.
  3. # Read installation instructions before saying "make" !!
  4. # For compiling with source and object files in different directories.
  5. srcdir = @srcdir@
  6. VPATH = @srcdir@
  7. # Where to install the programs and man pages.
  8. prefix = @prefix@
  9. exec_prefix = @exec_prefix@
  10. bindir = $(exec_prefix)/bin
  11. libdir = $(exec_prefix)/lib
  12. includedir = $(prefix)/include
  13. binprefix =
  14. manprefix =
  15. manext = 1
  16. mandir = $(prefix)/man/man$(manext)
  17. # The name of your C compiler:
  18. CC= @CC@
  19. # You may need to adjust these cc options:
  20. CFLAGS= @CFLAGS@ @CPPFLAGS@ @INCLUDEFLAGS@
  21. # Generally, we recommend defining any configuration symbols in jconfig.h,
  22. # NOT via -D switches here.
  23. # However, any special defines for ansi2knr.c may be included here:
  24. ANSI2KNRFLAGS= @ANSI2KNRFLAGS@
  25. # Link-time cc options:
  26. LDFLAGS= @LDFLAGS@
  27. # To link any special libraries, add the necessary -l commands here.
  28. LDLIBS= @LIBS@
  29. # If using GNU libtool, LIBTOOL references it; if not, LIBTOOL is empty.
  30. LIBTOOL = @LIBTOOL@
  31. # $(O) expands to "lo" if using libtool, plain "o" if not.
  32. # Similarly, $(A) expands to "la" or "a".
  33. O = @O@
  34. A = @A@
  35. # Library version ID; libtool uses this for the shared library version number.
  36. # Note: we suggest this match the macro of the same name in jpeglib.h.
  37. JPEG_LIB_VERSION = @JPEG_LIB_VERSION@
  38. # Put here the object file name for the correct system-dependent memory
  39. # manager file. For Unix this is usually jmemnobs.o, but you may want
  40. # to use jmemansi.o or jmemname.o if you have limited swap space.
  41. SYSDEPMEM= @MEMORYMGR@
  42. # miscellaneous OS-dependent stuff
  43. SHELL= /bin/sh
  44. # linker
  45. LN= @LN@
  46. # file deletion command
  47. RM= rm -f
  48. # directory creation command
  49. MKDIR= mkdir
  50. # library (.a) file creation command
  51. AR= ar rc
  52. # second step in .a creation (use "touch" if not needed)
  53. AR2= @RANLIB@
  54. # installation program
  55. INSTALL= @INSTALL@
  56. INSTALL_PROGRAM= @INSTALL_PROGRAM@
  57. INSTALL_LIB= @INSTALL_LIB@
  58. INSTALL_DATA= @INSTALL_DATA@
  59. # End of configurable options.
  60. # source files: JPEG library proper
  61. LIBSOURCES= jcapimin.c jcapistd.c jccoefct.c jccolor.c jcdctmgr.c jchuff.c \
  62. jcinit.c jcmainct.c jcmarker.c jcmaster.c jcomapi.c jcparam.c \
  63. jcphuff.c jcprepct.c jcsample.c jctrans.c jdapimin.c jdapistd.c \
  64. jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c jddctmgr.c jdhuff.c \
  65. jdinput.c jdmainct.c jdmarker.c jdmaster.c jdmerge.c jdphuff.c \
  66. jdpostct.c jdsample.c jdtrans.c jerror.c jfdctflt.c jfdctfst.c \
  67. jfdctint.c jidctflt.c jidctfst.c jidctint.c jidctred.c jquant1.c \
  68. jquant2.c jutils.c jmemmgr.c
  69. # memmgr back ends: compile only one of these into a working library
  70. SYSDEPSOURCES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemmac.c
  71. # source files: cjpeg/djpeg/jpegtran applications, also rdjpgcom/wrjpgcom
  72. APPSOURCES= cjpeg.c djpeg.c jpegtran.c rdjpgcom.c wrjpgcom.c cdjpeg.c \
  73. rdcolmap.c rdswitch.c transupp.c rdppm.c wrppm.c rdgif.c wrgif.c \
  74. rdtarga.c wrtarga.c rdbmp.c wrbmp.c rdrle.c wrrle.c
  75. SOURCES= $(LIBSOURCES) $(SYSDEPSOURCES) $(APPSOURCES)
  76. # files included by source files
  77. INCLUDES= jchuff.h jdhuff.h jdct.h jerror.h jinclude.h jmemsys.h jmorecfg.h \
  78. jpegint.h jpeglib.h jversion.h cdjpeg.h cderror.h transupp.h
  79. # documentation, test, and support files
  80. DOCS= README install.doc usage.doc cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 \
  81. wrjpgcom.1 wizard.doc example.c libjpeg.doc structure.doc \
  82. coderules.doc filelist.doc change.log
  83. MKFILES= configure makefile.cfg makefile.ansi makefile.unix makefile.bcc \
  84. makefile.mc6 makefile.dj makefile.wat makefile.vc makelib.ds \
  85. makeapps.ds makeproj.mac makcjpeg.st makdjpeg.st makljpeg.st \
  86. maktjpeg.st makefile.manx makefile.sas makefile.mms makefile.vms \
  87. makvms.opt
  88. CONFIGFILES= jconfig.cfg jconfig.bcc jconfig.mc6 jconfig.dj jconfig.wat \
  89. jconfig.vc jconfig.mac jconfig.st jconfig.manx jconfig.sas \
  90. jconfig.vms
  91. CONFIGUREFILES= config.guess config.sub install-sh ltconfig ltmain.sh
  92. OTHERFILES= jconfig.doc ckconfig.c ansi2knr.c ansi2knr.1 jmemdosa.asm
  93. TESTFILES= testorig.jpg testimg.ppm testimg.bmp testimg.jpg testprog.jpg \
  94. testimgp.jpg
  95. DISTFILES= $(DOCS) $(MKFILES) $(CONFIGFILES) $(SOURCES) $(INCLUDES) \
  96. $(CONFIGUREFILES) $(OTHERFILES) $(TESTFILES)
  97. # library object files common to compression and decompression
  98. COMOBJECTS= jcomapi.$(O) jutils.$(O) jerror.$(O) jmemmgr.$(O) $(SYSDEPMEM)
  99. # compression library object files
  100. CLIBOBJECTS= jcapimin.$(O) jcapistd.$(O) jctrans.$(O) jcparam.$(O) \
  101. jdatadst.$(O) jcinit.$(O) jcmaster.$(O) jcmarker.$(O) jcmainct.$(O) \
  102. jcprepct.$(O) jccoefct.$(O) jccolor.$(O) jcsample.$(O) jchuff.$(O) \
  103. jcphuff.$(O) jcdctmgr.$(O) jfdctfst.$(O) jfdctflt.$(O) \
  104. jfdctint.$(O)
  105. # decompression library object files
  106. DLIBOBJECTS= jdapimin.$(O) jdapistd.$(O) jdtrans.$(O) jdatasrc.$(O) \
  107. jdmaster.$(O) jdinput.$(O) jdmarker.$(O) jdhuff.$(O) jdphuff.$(O) \
  108. jdmainct.$(O) jdcoefct.$(O) jdpostct.$(O) jddctmgr.$(O) \
  109. jidctfst.$(O) jidctflt.$(O) jidctint.$(O) jidctred.$(O) \
  110. jdsample.$(O) jdcolor.$(O) jquant1.$(O) jquant2.$(O) jdmerge.$(O)
  111. # These objectfiles are included in libjpeg.a
  112. LIBOBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
  113. # object files for sample applications (excluding library files)
  114. COBJECTS= cjpeg.$(O) rdppm.$(O) rdgif.$(O) rdtarga.$(O) rdrle.$(O) \
  115. rdbmp.$(O) rdswitch.$(O) cdjpeg.$(O)
  116. DOBJECTS= djpeg.$(O) wrppm.$(O) wrgif.$(O) wrtarga.$(O) wrrle.$(O) \
  117. wrbmp.$(O) rdcolmap.$(O) cdjpeg.$(O)
  118. TROBJECTS= jpegtran.$(O) rdswitch.$(O) cdjpeg.$(O) transupp.$(O)
  119. all: @A2K_DEPS@ libjpeg.$(A) cjpeg djpeg jpegtran rdjpgcom wrjpgcom
  120. # Special compilation rules to support ansi2knr and libtool.
  121. .SUFFIXES: .lo .la
  122. # How to compile with libtool.
  123. @COM_LT@.c.lo:
  124. @COM_LT@ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c $(srcdir)/$*.c
  125. # How to use ansi2knr, when not using libtool.
  126. @COM_A2K@.c.o:
  127. @COM_A2K@ ./ansi2knr $(srcdir)/$*.c knr/$*.c
  128. @COM_A2K@ $(CC) $(CFLAGS) -c knr/$*.c
  129. @COM_A2K@ $(RM) knr/$*.c
  130. # How to use ansi2knr AND libtool.
  131. @COM_A2K@.c.lo:
  132. @COM_A2K@ ./ansi2knr $(srcdir)/$*.c knr/$*.c
  133. @COM_A2K@ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c knr/$*.c
  134. @COM_A2K@ $(RM) knr/$*.c
  135. ansi2knr: ansi2knr.c
  136. $(CC) $(CFLAGS) $(ANSI2KNRFLAGS) -o ansi2knr $(srcdir)/ansi2knr.c
  137. $(MKDIR) knr
  138. # the library:
  139. # without libtool:
  140. libjpeg.a: @A2K_DEPS@ $(LIBOBJECTS)
  141. $(RM) libjpeg.a
  142. $(AR) libjpeg.a $(LIBOBJECTS)
  143. $(AR2) libjpeg.a
  144. # with libtool:
  145. libjpeg.la: @A2K_DEPS@ $(LIBOBJECTS)
  146. $(LIBTOOL) --mode=link $(CC) -o libjpeg.la $(LIBOBJECTS) \
  147. -rpath $(libdir) -version-info $(JPEG_LIB_VERSION)
  148. # sample programs:
  149. cjpeg: $(COBJECTS) libjpeg.$(A)
  150. $(LN) $(LDFLAGS) -o cjpeg $(COBJECTS) libjpeg.$(A) $(LDLIBS)
  151. djpeg: $(DOBJECTS) libjpeg.$(A)
  152. $(LN) $(LDFLAGS) -o djpeg $(DOBJECTS) libjpeg.$(A) $(LDLIBS)
  153. jpegtran: $(TROBJECTS) libjpeg.$(A)
  154. $(LN) $(LDFLAGS) -o jpegtran $(TROBJECTS) libjpeg.$(A) $(LDLIBS)
  155. rdjpgcom: rdjpgcom.$(O)
  156. $(LN) $(LDFLAGS) -o rdjpgcom rdjpgcom.$(O) $(LDLIBS)
  157. wrjpgcom: wrjpgcom.$(O)
  158. $(LN) $(LDFLAGS) -o wrjpgcom wrjpgcom.$(O) $(LDLIBS)
  159. # Installation rules:
  160. install: cjpeg djpeg jpegtran rdjpgcom wrjpgcom @FORCE_INSTALL_LIB@
  161. $(INSTALL_PROGRAM) cjpeg $(bindir)/$(binprefix)cjpeg
  162. $(INSTALL_PROGRAM) djpeg $(bindir)/$(binprefix)djpeg
  163. $(INSTALL_PROGRAM) jpegtran $(bindir)/$(binprefix)jpegtran
  164. $(INSTALL_PROGRAM) rdjpgcom $(bindir)/$(binprefix)rdjpgcom
  165. $(INSTALL_PROGRAM) wrjpgcom $(bindir)/$(binprefix)wrjpgcom
  166. $(INSTALL_DATA) $(srcdir)/cjpeg.1 $(mandir)/$(manprefix)cjpeg.$(manext)
  167. $(INSTALL_DATA) $(srcdir)/djpeg.1 $(mandir)/$(manprefix)djpeg.$(manext)
  168. $(INSTALL_DATA) $(srcdir)/jpegtran.1 $(mandir)/$(manprefix)jpegtran.$(manext)
  169. $(INSTALL_DATA) $(srcdir)/rdjpgcom.1 $(mandir)/$(manprefix)rdjpgcom.$(manext)
  170. $(INSTALL_DATA) $(srcdir)/wrjpgcom.1 $(mandir)/$(manprefix)wrjpgcom.$(manext)
  171. install-lib: libjpeg.$(A) install-headers
  172. $(INSTALL_LIB) libjpeg.$(A) $(libdir)/$(binprefix)libjpeg.$(A)
  173. install-headers: jconfig.h
  174. $(INSTALL_DATA) jconfig.h $(includedir)/jconfig.h
  175. $(INSTALL_DATA) $(srcdir)/jpeglib.h $(includedir)/jpeglib.h
  176. $(INSTALL_DATA) $(srcdir)/jmorecfg.h $(includedir)/jmorecfg.h
  177. $(INSTALL_DATA) $(srcdir)/jerror.h $(includedir)/jerror.h
  178. clean:
  179. $(RM) *.o *.lo libjpeg.a libjpeg.la
  180. $(RM) cjpeg djpeg jpegtran rdjpgcom wrjpgcom
  181. $(RM) ansi2knr core testout* config.log config.status
  182. $(RM) -r knr .libs _libs
  183. distclean: clean
  184. $(RM) Makefile jconfig.h libtool config.cache
  185. test: cjpeg djpeg jpegtran
  186. $(RM) testout*
  187. ./djpeg -dct int -ppm -outfile testout.ppm $(srcdir)/testorig.jpg
  188. ./djpeg -dct int -bmp -colors 256 -outfile testout.bmp $(srcdir)/testorig.jpg
  189. ./cjpeg -dct int -outfile testout.jpg $(srcdir)/testimg.ppm
  190. ./djpeg -dct int -ppm -outfile testoutp.ppm $(srcdir)/testprog.jpg
  191. ./cjpeg -dct int -progressive -opt -outfile testoutp.jpg $(srcdir)/testimg.ppm
  192. ./jpegtran -outfile testoutt.jpg $(srcdir)/testprog.jpg
  193. cmp $(srcdir)/testimg.ppm testout.ppm
  194. cmp $(srcdir)/testimg.bmp testout.bmp
  195. cmp $(srcdir)/testimg.jpg testout.jpg
  196. cmp $(srcdir)/testimg.ppm testoutp.ppm
  197. cmp $(srcdir)/testimgp.jpg testoutp.jpg
  198. cmp $(srcdir)/testorig.jpg testoutt.jpg
  199. check: test
  200. # Mistake catcher:
  201. jconfig.h: jconfig.doc
  202. echo You must prepare a system-dependent jconfig.h file.
  203. echo Please read the installation directions in install.doc.
  204. exit 1
  205. # GNU Make likes to know which target names are not really files to be made:
  206. .PHONY: all install install-lib install-headers clean distclean test check
  207. jcapimin.$(O): jcapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  208. jcapistd.$(O): jcapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  209. jccoefct.$(O): jccoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  210. jccolor.$(O): jccolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  211. jcdctmgr.$(O): jcdctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  212. jchuff.$(O): jchuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jchuff.h
  213. jcinit.$(O): jcinit.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  214. jcmainct.$(O): jcmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  215. jcmarker.$(O): jcmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  216. jcmaster.$(O): jcmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  217. jcomapi.$(O): jcomapi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  218. jcparam.$(O): jcparam.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  219. jcphuff.$(O): jcphuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jchuff.h
  220. jcprepct.$(O): jcprepct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  221. jcsample.$(O): jcsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  222. jctrans.$(O): jctrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  223. jdapimin.$(O): jdapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  224. jdapistd.$(O): jdapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  225. jdatadst.$(O): jdatadst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
  226. jdatasrc.$(O): jdatasrc.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
  227. jdcoefct.$(O): jdcoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  228. jdcolor.$(O): jdcolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  229. jddctmgr.$(O): jddctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  230. jdhuff.$(O): jdhuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdhuff.h
  231. jdinput.$(O): jdinput.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  232. jdmainct.$(O): jdmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  233. jdmarker.$(O): jdmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  234. jdmaster.$(O): jdmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  235. jdmerge.$(O): jdmerge.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  236. jdphuff.$(O): jdphuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdhuff.h
  237. jdpostct.$(O): jdpostct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  238. jdsample.$(O): jdsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  239. jdtrans.$(O): jdtrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  240. jerror.$(O): jerror.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jversion.h jerror.h
  241. jfdctflt.$(O): jfdctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  242. jfdctfst.$(O): jfdctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  243. jfdctint.$(O): jfdctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  244. jidctflt.$(O): jidctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  245. jidctfst.$(O): jidctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  246. jidctint.$(O): jidctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  247. jidctred.$(O): jidctred.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  248. jquant1.$(O): jquant1.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  249. jquant2.$(O): jquant2.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  250. jutils.$(O): jutils.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  251. jmemmgr.$(O): jmemmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  252. jmemansi.$(O): jmemansi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  253. jmemname.$(O): jmemname.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  254. jmemnobs.$(O): jmemnobs.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  255. jmemdos.$(O): jmemdos.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  256. jmemmac.$(O): jmemmac.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  257. cjpeg.$(O): cjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
  258. djpeg.$(O): djpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
  259. jpegtran.$(O): jpegtran.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h transupp.h jversion.h
  260. rdjpgcom.$(O): rdjpgcom.c jinclude.h jconfig.h
  261. wrjpgcom.$(O): wrjpgcom.c jinclude.h jconfig.h
  262. cdjpeg.$(O): cdjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  263. rdcolmap.$(O): rdcolmap.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  264. rdswitch.$(O): rdswitch.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  265. transupp.$(O): transupp.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h transupp.h
  266. rdppm.$(O): rdppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  267. wrppm.$(O): wrppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  268. rdgif.$(O): rdgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  269. wrgif.$(O): wrgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  270. rdtarga.$(O): rdtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  271. wrtarga.$(O): wrtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  272. rdbmp.$(O): rdbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  273. wrbmp.$(O): wrbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  274. rdrle.$(O): rdrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  275. wrrle.$(O): wrrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h