src/3rdparty/libjpeg/makefile.mc6
changeset 30 5dc02b23752f
parent 0 1918ee327afb
equal deleted inserted replaced
29:b72c6db6890b 30:5dc02b23752f
    25 # a 16-bit Windows DLL:
    25 # a 16-bit Windows DLL:
    26 # CFLAGS = -ALw -Gsw -Zpe -W3 -O2 -Zi -Zd
    26 # CFLAGS = -ALw -Gsw -Zpe -W3 -O2 -Zi -Zd
    27 
    27 
    28 # Put here the object file name for the correct system-dependent memory
    28 # Put here the object file name for the correct system-dependent memory
    29 # manager file.  For DOS, we recommend jmemdos.c and jmemdosa.asm.
    29 # manager file.  For DOS, we recommend jmemdos.c and jmemdosa.asm.
    30 # (But not for Windows; see install.doc if you use this makefile for Windows.)
    30 # (But not for Windows; see install.txt if you use this makefile for Windows.)
    31 SYSDEPMEM= jmemdos.obj jmemdosa.obj
    31 SYSDEPMEM= jmemdos.obj jmemdosa.obj
    32 # SYSDEPMEMLIB must list the same files with "+" signs for the librarian.
    32 # SYSDEPMEMLIB must list the same files with "+" signs for the librarian.
    33 SYSDEPMEMLIB= +jmemdos.obj +jmemdosa.obj
    33 SYSDEPMEMLIB= +jmemdos.obj +jmemdosa.obj
    34 
    34 
    35 # End of configurable options.
    35 # End of configurable options.
    36 
    36 
    37 
    37 
    38 # source files: JPEG library proper
    38 # source files: JPEG library proper
    39 LIBSOURCES= jcapimin.c jcapistd.c jccoefct.c jccolor.c jcdctmgr.c jchuff.c \
    39 LIBSOURCES= jaricom.c jcapimin.c jcapistd.c jcarith.c jccoefct.c jccolor.c \
    40         jcinit.c jcmainct.c jcmarker.c jcmaster.c jcomapi.c jcparam.c \
    40         jcdctmgr.c jchuff.c jcinit.c jcmainct.c jcmarker.c jcmaster.c \
    41         jcphuff.c jcprepct.c jcsample.c jctrans.c jdapimin.c jdapistd.c \
    41         jcomapi.c jcparam.c jcprepct.c jcsample.c jctrans.c jdapimin.c \
    42         jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c jddctmgr.c jdhuff.c \
    42         jdapistd.c jdarith.c jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c \
    43         jdinput.c jdmainct.c jdmarker.c jdmaster.c jdmerge.c jdphuff.c \
    43         jddctmgr.c jdhuff.c jdinput.c jdmainct.c jdmarker.c jdmaster.c \
    44         jdpostct.c jdsample.c jdtrans.c jerror.c jfdctflt.c jfdctfst.c \
    44         jdmerge.c jdpostct.c jdsample.c jdtrans.c jerror.c jfdctflt.c \
    45         jfdctint.c jidctflt.c jidctfst.c jidctint.c jidctred.c jquant1.c \
    45         jfdctfst.c jfdctint.c jidctflt.c jidctfst.c jidctint.c jquant1.c \
    46         jquant2.c jutils.c jmemmgr.c
    46         jquant2.c jutils.c jmemmgr.c
    47 # memmgr back ends: compile only one of these into a working library
    47 # memmgr back ends: compile only one of these into a working library
    48 SYSDEPSOURCES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemmac.c
    48 SYSDEPSOURCES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemmac.c
    49 # source files: cjpeg/djpeg/jpegtran applications, also rdjpgcom/wrjpgcom
    49 # source files: cjpeg/djpeg/jpegtran applications, also rdjpgcom/wrjpgcom
    50 APPSOURCES= cjpeg.c djpeg.c jpegtran.c rdjpgcom.c wrjpgcom.c cdjpeg.c \
    50 APPSOURCES= cjpeg.c djpeg.c jpegtran.c rdjpgcom.c wrjpgcom.c cdjpeg.c \
    51         rdcolmap.c rdswitch.c transupp.c rdppm.c wrppm.c rdgif.c wrgif.c \
    51         rdcolmap.c rdswitch.c transupp.c rdppm.c wrppm.c rdgif.c wrgif.c \
    52         rdtarga.c wrtarga.c rdbmp.c wrbmp.c rdrle.c wrrle.c
    52         rdtarga.c wrtarga.c rdbmp.c wrbmp.c rdrle.c wrrle.c
    53 SOURCES= $(LIBSOURCES) $(SYSDEPSOURCES) $(APPSOURCES)
    53 SOURCES= $(LIBSOURCES) $(SYSDEPSOURCES) $(APPSOURCES)
    54 # files included by source files
    54 # files included by source files
    55 INCLUDES= jchuff.h jdhuff.h jdct.h jerror.h jinclude.h jmemsys.h jmorecfg.h \
    55 INCLUDES= jdct.h jerror.h jinclude.h jmemsys.h jmorecfg.h jpegint.h \
    56         jpegint.h jpeglib.h jversion.h cdjpeg.h cderror.h transupp.h
    56         jpeglib.h jversion.h cdjpeg.h cderror.h transupp.h
    57 # documentation, test, and support files
    57 # documentation, test, and support files
    58 DOCS= README install.doc usage.doc cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 \
    58 DOCS= README install.txt usage.txt cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 \
    59         wrjpgcom.1 wizard.doc example.c libjpeg.doc structure.doc \
    59         wrjpgcom.1 wizard.txt example.c libjpeg.txt structure.txt \
    60         coderules.doc filelist.doc change.log
    60         coderules.txt filelist.txt change.log
    61 MKFILES= configure makefile.cfg makefile.ansi makefile.unix makefile.bcc \
    61 MKFILES= configure Makefile.in makefile.ansi makefile.unix makefile.bcc \
    62         makefile.mc6 makefile.dj makefile.wat makefile.vc makelib.ds \
    62         makefile.mc6 makefile.dj makefile.wat makefile.vc makejdsw.vc6 \
    63         makeapps.ds makeproj.mac makcjpeg.st makdjpeg.st makljpeg.st \
    63         makeadsw.vc6 makejdep.vc6 makejdsp.vc6 makejmak.vc6 makecdep.vc6 \
    64         maktjpeg.st makefile.manx makefile.sas makefile.mms makefile.vms \
    64         makecdsp.vc6 makecmak.vc6 makeddep.vc6 makeddsp.vc6 makedmak.vc6 \
    65         makvms.opt
    65         maketdep.vc6 maketdsp.vc6 maketmak.vc6 makerdep.vc6 makerdsp.vc6 \
       
    66         makermak.vc6 makewdep.vc6 makewdsp.vc6 makewmak.vc6 makejsln.vc9 \
       
    67         makeasln.vc9 makejvcp.vc9 makecvcp.vc9 makedvcp.vc9 maketvcp.vc9 \
       
    68         makervcp.vc9 makewvcp.vc9 makeproj.mac makcjpeg.st makdjpeg.st \
       
    69         makljpeg.st maktjpeg.st makefile.manx makefile.sas makefile.mms \
       
    70         makefile.vms makvms.opt
    66 CONFIGFILES= jconfig.cfg jconfig.bcc jconfig.mc6 jconfig.dj jconfig.wat \
    71 CONFIGFILES= jconfig.cfg jconfig.bcc jconfig.mc6 jconfig.dj jconfig.wat \
    67         jconfig.vc jconfig.mac jconfig.st jconfig.manx jconfig.sas \
    72         jconfig.vc jconfig.mac jconfig.st jconfig.manx jconfig.sas \
    68         jconfig.vms
    73         jconfig.vms
    69 CONFIGUREFILES= config.guess config.sub install-sh ltconfig ltmain.sh
    74 CONFIGUREFILES= config.guess config.sub install-sh ltmain.sh depcomp missing
    70 OTHERFILES= jconfig.doc ckconfig.c ansi2knr.c ansi2knr.1 jmemdosa.asm
    75 OTHERFILES= jconfig.txt ckconfig.c ansi2knr.c ansi2knr.1 jmemdosa.asm \
       
    76         libjpeg.map
    71 TESTFILES= testorig.jpg testimg.ppm testimg.bmp testimg.jpg testprog.jpg \
    77 TESTFILES= testorig.jpg testimg.ppm testimg.bmp testimg.jpg testprog.jpg \
    72         testimgp.jpg
    78         testimgp.jpg
    73 DISTFILES= $(DOCS) $(MKFILES) $(CONFIGFILES) $(SOURCES) $(INCLUDES) \
    79 DISTFILES= $(DOCS) $(MKFILES) $(CONFIGFILES) $(SOURCES) $(INCLUDES) \
    74         $(CONFIGUREFILES) $(OTHERFILES) $(TESTFILES)
    80         $(CONFIGUREFILES) $(OTHERFILES) $(TESTFILES)
    75 # library object files common to compression and decompression
    81 # library object files common to compression and decompression
    76 COMOBJECTS= jcomapi.obj jutils.obj jerror.obj jmemmgr.obj $(SYSDEPMEM)
    82 COMOBJECTS= jaricom.obj jcomapi.obj jutils.obj jerror.obj jmemmgr.obj $(SYSDEPMEM)
    77 # compression library object files
    83 # compression library object files
    78 CLIBOBJECTS= jcapimin.obj jcapistd.obj jctrans.obj jcparam.obj jdatadst.obj \
    84 CLIBOBJECTS= jcapimin.obj jcapistd.obj jcarith.obj jctrans.obj jcparam.obj \
    79         jcinit.obj jcmaster.obj jcmarker.obj jcmainct.obj jcprepct.obj \
    85         jdatadst.obj jcinit.obj jcmaster.obj jcmarker.obj jcmainct.obj \
    80         jccoefct.obj jccolor.obj jcsample.obj jchuff.obj jcphuff.obj \
    86         jcprepct.obj jccoefct.obj jccolor.obj jcsample.obj jchuff.obj \
    81         jcdctmgr.obj jfdctfst.obj jfdctflt.obj jfdctint.obj
    87         jcdctmgr.obj jfdctfst.obj jfdctflt.obj jfdctint.obj
    82 # decompression library object files
    88 # decompression library object files
    83 DLIBOBJECTS= jdapimin.obj jdapistd.obj jdtrans.obj jdatasrc.obj \
    89 DLIBOBJECTS= jdapimin.obj jdapistd.obj jdarith.obj jdtrans.obj jdatasrc.obj \
    84         jdmaster.obj jdinput.obj jdmarker.obj jdhuff.obj jdphuff.obj \
    90         jdmaster.obj jdinput.obj jdmarker.obj jdhuff.obj jdmainct.obj \
    85         jdmainct.obj jdcoefct.obj jdpostct.obj jddctmgr.obj jidctfst.obj \
    91         jdcoefct.obj jdpostct.obj jddctmgr.obj jidctfst.obj jidctflt.obj \
    86         jidctflt.obj jidctint.obj jidctred.obj jdsample.obj jdcolor.obj \
    92         jidctint.obj jdsample.obj jdcolor.obj jquant1.obj jquant2.obj \
    87         jquant1.obj jquant2.obj jdmerge.obj
    93         jdmerge.obj
    88 # These objectfiles are included in libjpeg.lib
    94 # These objectfiles are included in libjpeg.lib
    89 LIBOBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
    95 LIBOBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
    90 # object files for sample applications (excluding library files)
    96 # object files for sample applications (excluding library files)
    91 COBJECTS= cjpeg.obj rdppm.obj rdgif.obj rdtarga.obj rdrle.obj rdbmp.obj \
    97 COBJECTS= cjpeg.obj rdppm.obj rdgif.obj rdtarga.obj rdrle.obj rdbmp.obj \
    92         rdswitch.obj cdjpeg.obj
    98         rdswitch.obj cdjpeg.obj
   108 $(RFILE) : makefile
   114 $(RFILE) : makefile
   109 	del $(RFILE)
   115 	del $(RFILE)
   110 	echo libjpeg.lib >$(RFILE)
   116 	echo libjpeg.lib >$(RFILE)
   111 # silly want-to-create-it prompt:
   117 # silly want-to-create-it prompt:
   112 	echo y >>$(RFILE)
   118 	echo y >>$(RFILE)
   113 	echo +jcapimin.obj +jcapistd.obj +jctrans.obj +jcparam.obj & >>$(RFILE)
   119 	echo +jcapimin.obj +jcapistd.obj +jcarith.obj +jctrans.obj & >>$(RFILE)
   114 	echo +jdatadst.obj +jcinit.obj +jcmaster.obj +jcmarker.obj & >>$(RFILE)
   120 	echo +jcparam.obj +jdatadst.obj +jcinit.obj +jcmaster.obj & >>$(RFILE)
   115 	echo +jcmainct.obj +jcprepct.obj +jccoefct.obj & >>$(RFILE)
   121 	echo +jcmarker.obj +jcmainct.obj +jcprepct.obj & >>$(RFILE)
   116 	echo +jccolor.obj +jcsample.obj +jchuff.obj +jcphuff.obj & >>$(RFILE)
   122 	echo +jccoefct.obj +jccolor.obj +jcsample.obj +jchuff.obj & >>$(RFILE)
   117 	echo +jcdctmgr.obj +jfdctfst.obj +jfdctflt.obj & >>$(RFILE)
   123 	echo +jcdctmgr.obj +jfdctfst.obj +jfdctflt.obj & >>$(RFILE)
   118 	echo +jfdctint.obj +jdapimin.obj +jdapistd.obj & >>$(RFILE)
   124 	echo +jfdctint.obj +jdapimin.obj +jdapistd.obj & >>$(RFILE)
   119 	echo +jdtrans.obj +jdatasrc.obj +jdmaster.obj +jdinput.obj & >>$(RFILE)
   125 	echo +jdarith.obj +jdtrans.obj +jdatasrc.obj +jdmaster.obj & >>$(RFILE)
   120 	echo +jdmarker.obj +jdhuff.obj +jdphuff.obj +jdmainct.obj & >>$(RFILE)
   126 	echo +jdinput.obj +jdmarker.obj +jdhuff.obj +jdmainct.obj & >>$(RFILE)
   121 	echo +jdcoefct.obj +jdpostct.obj +jddctmgr.obj & >>$(RFILE)
   127 	echo +jdcoefct.obj +jdpostct.obj +jddctmgr.obj & >>$(RFILE)
   122 	echo +jidctfst.obj +jidctflt.obj +jidctint.obj & >>$(RFILE)
   128 	echo +jidctfst.obj +jidctflt.obj +jidctint.obj & >>$(RFILE)
   123 	echo +jidctred.obj +jdsample.obj +jdcolor.obj +jquant1.obj & >>$(RFILE)
   129 	echo +jdsample.obj +jdcolor.obj +jquant1.obj & >>$(RFILE)
   124 	echo +jquant2.obj +jdmerge.obj +jcomapi.obj +jutils.obj & >>$(RFILE)
   130 	echo +jquant2.obj +jdmerge.obj +jaricom.obj +jcomapi.obj & >>$(RFILE)
   125 	echo +jerror.obj +jmemmgr.obj & >>$(RFILE)
   131 	echo +jutils.obj +jerror.obj +jmemmgr.obj & >>$(RFILE)
   126 	echo $(SYSDEPMEMLIB) ; >>$(RFILE)
   132 	echo $(SYSDEPMEMLIB) ; >>$(RFILE)
   127 
   133 
   128 cjpeg.exe: $(COBJECTS) libjpeg.lib
   134 cjpeg.exe: $(COBJECTS) libjpeg.lib
   129 	echo $(COBJECTS) >cjpeg.lst
   135 	echo $(COBJECTS) >cjpeg.lst
   130 	link /STACK:4096 /EXEPACK @cjpeg.lst, cjpeg.exe, , libjpeg.lib, ;
   136 	link /STACK:4096 /EXEPACK @cjpeg.lst, cjpeg.exe, , libjpeg.lib, ;
   143 
   149 
   144 # wrjpgcom needs large model so it can malloc a 64K chunk
   150 # wrjpgcom needs large model so it can malloc a 64K chunk
   145 wrjpgcom.exe: wrjpgcom.c
   151 wrjpgcom.exe: wrjpgcom.c
   146 	$(CC) -AL -O -W3 wrjpgcom.c
   152 	$(CC) -AL -O -W3 wrjpgcom.c
   147 
   153 
   148 jconfig.h: jconfig.doc
   154 jconfig.h: jconfig.txt
   149 	echo You must prepare a system-dependent jconfig.h file.
   155 	echo You must prepare a system-dependent jconfig.h file.
   150 	echo Please read the installation directions in install.doc.
   156 	echo Please read the installation directions in install.txt.
   151 	exit 1
   157 	exit 1
   152 
   158 
   153 clean:
   159 clean:
   154 	del *.obj
   160 	del *.obj
   155 	del libjpeg.lib
   161 	del libjpeg.lib
   174 	fc /b testimg.ppm testoutp.ppm
   180 	fc /b testimg.ppm testoutp.ppm
   175 	fc /b testimgp.jpg testoutp.jpg
   181 	fc /b testimgp.jpg testoutp.jpg
   176 	fc /b testorig.jpg testoutt.jpg
   182 	fc /b testorig.jpg testoutt.jpg
   177 
   183 
   178 
   184 
       
   185 jaricom.obj: jaricom.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   179 jcapimin.obj: jcapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   186 jcapimin.obj: jcapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   180 jcapistd.obj: jcapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   187 jcapistd.obj: jcapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
       
   188 jcarith.obj: jcarith.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   181 jccoefct.obj: jccoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   189 jccoefct.obj: jccoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   182 jccolor.obj: jccolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   190 jccolor.obj: jccolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   183 jcdctmgr.obj: jcdctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
   191 jcdctmgr.obj: jcdctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
   184 jchuff.obj: jchuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jchuff.h
   192 jchuff.obj: jchuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   185 jcinit.obj: jcinit.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   193 jcinit.obj: jcinit.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   186 jcmainct.obj: jcmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   194 jcmainct.obj: jcmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   187 jcmarker.obj: jcmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   195 jcmarker.obj: jcmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   188 jcmaster.obj: jcmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   196 jcmaster.obj: jcmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   189 jcomapi.obj: jcomapi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   197 jcomapi.obj: jcomapi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   190 jcparam.obj: jcparam.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   198 jcparam.obj: jcparam.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   191 jcphuff.obj: jcphuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jchuff.h
       
   192 jcprepct.obj: jcprepct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   199 jcprepct.obj: jcprepct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   193 jcsample.obj: jcsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   200 jcsample.obj: jcsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   194 jctrans.obj: jctrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   201 jctrans.obj: jctrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   195 jdapimin.obj: jdapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   202 jdapimin.obj: jdapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   196 jdapistd.obj: jdapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   203 jdapistd.obj: jdapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
       
   204 jdarith.obj: jdarith.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   197 jdatadst.obj: jdatadst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
   205 jdatadst.obj: jdatadst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
   198 jdatasrc.obj: jdatasrc.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
   206 jdatasrc.obj: jdatasrc.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
   199 jdcoefct.obj: jdcoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   207 jdcoefct.obj: jdcoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   200 jdcolor.obj: jdcolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   208 jdcolor.obj: jdcolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   201 jddctmgr.obj: jddctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
   209 jddctmgr.obj: jddctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
   202 jdhuff.obj: jdhuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdhuff.h
   210 jdhuff.obj: jdhuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   203 jdinput.obj: jdinput.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   211 jdinput.obj: jdinput.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   204 jdmainct.obj: jdmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   212 jdmainct.obj: jdmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   205 jdmarker.obj: jdmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   213 jdmarker.obj: jdmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   206 jdmaster.obj: jdmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   214 jdmaster.obj: jdmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   207 jdmerge.obj: jdmerge.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   215 jdmerge.obj: jdmerge.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   208 jdphuff.obj: jdphuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdhuff.h
       
   209 jdpostct.obj: jdpostct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   216 jdpostct.obj: jdpostct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   210 jdsample.obj: jdsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   217 jdsample.obj: jdsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   211 jdtrans.obj: jdtrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   218 jdtrans.obj: jdtrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   212 jerror.obj: jerror.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jversion.h jerror.h
   219 jerror.obj: jerror.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jversion.h jerror.h
   213 jfdctflt.obj: jfdctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
   220 jfdctflt.obj: jfdctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
   214 jfdctfst.obj: jfdctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
   221 jfdctfst.obj: jfdctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
   215 jfdctint.obj: jfdctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
   222 jfdctint.obj: jfdctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
   216 jidctflt.obj: jidctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
   223 jidctflt.obj: jidctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
   217 jidctfst.obj: jidctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
   224 jidctfst.obj: jidctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
   218 jidctint.obj: jidctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
   225 jidctint.obj: jidctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
   219 jidctred.obj: jidctred.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
       
   220 jquant1.obj: jquant1.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   226 jquant1.obj: jquant1.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   221 jquant2.obj: jquant2.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   227 jquant2.obj: jquant2.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   222 jutils.obj: jutils.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   228 jutils.obj: jutils.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
   223 jmemmgr.obj: jmemmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
   229 jmemmgr.obj: jmemmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
   224 jmemansi.obj: jmemansi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
   230 jmemansi.obj: jmemansi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h