makefile.wat
上传用户:wuyixingx
上传日期:2007-01-08
资源大小:745k
文件大小:12k
源码类别:

图形图象

开发平台:

C/C++

  1. # Makefile for Independent JPEG Group's software
  2. # This makefile is suitable for Watcom C/C++ 10.0 on MS-DOS (using
  3. # dos4g extender), OS/2, and Windows NT console mode.
  4. # Thanks to Janos Haide, jhaide@btrvtech.com.
  5. # Read installation instructions before saying "wmake" !!
  6. # Uncomment line for desired system
  7. SYSTEM=DOS
  8. #SYSTEM=OS2
  9. #SYSTEM=NT
  10. # The name of your C compiler:
  11. CC= wcl386
  12. # You may need to adjust these cc options:
  13. CFLAGS= -4r -ort -wx -zq -bt=$(SYSTEM)
  14. # Caution: avoid -ol or -ox; these generate bad code with 10.0 or 10.0a.
  15. # Generally, we recommend defining any configuration symbols in jconfig.h,
  16. # NOT via -D switches here.
  17. # Link-time cc options:
  18. !ifeq SYSTEM DOS
  19. LDFLAGS= -zq -l=dos4g
  20. !else ifeq SYSTEM OS2
  21. LDFLAGS= -zq -l=os2v2
  22. !else ifeq SYSTEM NT
  23. LDFLAGS= -zq -l=nt
  24. !endif
  25. # Put here the object file name for the correct system-dependent memory
  26. # manager file.  jmemnobs should work fine for dos4g or OS/2 environment.
  27. SYSDEPMEM= jmemnobs.obj
  28. # End of configurable options.
  29. # source files: JPEG library proper
  30. LIBSOURCES= jcapimin.c jcapistd.c jccoefct.c jccolor.c jcdctmgr.c jchuff.c &
  31.         jcinit.c jcmainct.c jcmarker.c jcmaster.c jcomapi.c jcparam.c &
  32.         jcphuff.c jcprepct.c jcsample.c jctrans.c jdapimin.c jdapistd.c &
  33.         jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c jddctmgr.c jdhuff.c &
  34.         jdinput.c jdmainct.c jdmarker.c jdmaster.c jdmerge.c jdphuff.c &
  35.         jdpostct.c jdsample.c jdtrans.c jerror.c jfdctflt.c jfdctfst.c &
  36.         jfdctint.c jidctflt.c jidctfst.c jidctint.c jidctred.c jquant1.c &
  37.         jquant2.c jutils.c jmemmgr.c
  38. # memmgr back ends: compile only one of these into a working library
  39. SYSDEPSOURCES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemmac.c
  40. # source files: cjpeg/djpeg/jpegtran applications, also rdjpgcom/wrjpgcom
  41. APPSOURCES= cjpeg.c djpeg.c jpegtran.c rdjpgcom.c wrjpgcom.c cdjpeg.c &
  42.         rdcolmap.c rdswitch.c transupp.c rdppm.c wrppm.c rdgif.c wrgif.c &
  43.         rdtarga.c wrtarga.c rdbmp.c wrbmp.c rdrle.c wrrle.c
  44. SOURCES= $(LIBSOURCES) $(SYSDEPSOURCES) $(APPSOURCES)
  45. # files included by source files
  46. INCLUDES= jchuff.h jdhuff.h jdct.h jerror.h jinclude.h jmemsys.h jmorecfg.h &
  47.         jpegint.h jpeglib.h jversion.h cdjpeg.h cderror.h transupp.h
  48. # documentation, test, and support files
  49. DOCS= README install.doc usage.doc cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 &
  50.         wrjpgcom.1 wizard.doc example.c libjpeg.doc structure.doc &
  51.         coderules.doc filelist.doc change.log
  52. MKFILES= configure makefile.cfg makefile.ansi makefile.unix makefile.bcc &
  53.         makefile.mc6 makefile.dj makefile.wat makefile.vc makelib.ds &
  54.         makeapps.ds makeproj.mac makcjpeg.st makdjpeg.st makljpeg.st &
  55.         maktjpeg.st makefile.manx makefile.sas makefile.mms makefile.vms &
  56.         makvms.opt
  57. CONFIGFILES= jconfig.cfg jconfig.bcc jconfig.mc6 jconfig.dj jconfig.wat &
  58.         jconfig.vc jconfig.mac jconfig.st jconfig.manx jconfig.sas &
  59.         jconfig.vms
  60. CONFIGUREFILES= config.guess config.sub install-sh ltconfig ltmain.sh
  61. OTHERFILES= jconfig.doc ckconfig.c ansi2knr.c ansi2knr.1 jmemdosa.asm
  62. TESTFILES= testorig.jpg testimg.ppm testimg.bmp testimg.jpg testprog.jpg &
  63.         testimgp.jpg
  64. DISTFILES= $(DOCS) $(MKFILES) $(CONFIGFILES) $(SOURCES) $(INCLUDES) &
  65.         $(CONFIGUREFILES) $(OTHERFILES) $(TESTFILES)
  66. # library object files common to compression and decompression
  67. COMOBJECTS= jcomapi.obj jutils.obj jerror.obj jmemmgr.obj $(SYSDEPMEM)
  68. # compression library object files
  69. CLIBOBJECTS= jcapimin.obj jcapistd.obj jctrans.obj jcparam.obj jdatadst.obj &
  70.         jcinit.obj jcmaster.obj jcmarker.obj jcmainct.obj jcprepct.obj &
  71.         jccoefct.obj jccolor.obj jcsample.obj jchuff.obj jcphuff.obj &
  72.         jcdctmgr.obj jfdctfst.obj jfdctflt.obj jfdctint.obj
  73. # decompression library object files
  74. DLIBOBJECTS= jdapimin.obj jdapistd.obj jdtrans.obj jdatasrc.obj &
  75.         jdmaster.obj jdinput.obj jdmarker.obj jdhuff.obj jdphuff.obj &
  76.         jdmainct.obj jdcoefct.obj jdpostct.obj jddctmgr.obj jidctfst.obj &
  77.         jidctflt.obj jidctint.obj jidctred.obj jdsample.obj jdcolor.obj &
  78.         jquant1.obj jquant2.obj jdmerge.obj
  79. # These objectfiles are included in libjpeg.lib
  80. LIBOBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
  81. # object files for sample applications (excluding library files)
  82. COBJECTS= cjpeg.obj rdppm.obj rdgif.obj rdtarga.obj rdrle.obj rdbmp.obj &
  83.         rdswitch.obj cdjpeg.obj
  84. DOBJECTS= djpeg.obj wrppm.obj wrgif.obj wrtarga.obj wrrle.obj wrbmp.obj &
  85.         rdcolmap.obj cdjpeg.obj
  86. TROBJECTS= jpegtran.obj rdswitch.obj cdjpeg.obj transupp.obj
  87. all: libjpeg.lib cjpeg.exe djpeg.exe jpegtran.exe rdjpgcom.exe wrjpgcom.exe
  88. libjpeg.lib: $(LIBOBJECTS)
  89. - del libjpeg.lib
  90. * wlib -n libjpeg.lib $(LIBOBJECTS)
  91. cjpeg.exe: $(COBJECTS) libjpeg.lib
  92. $(CC) $(LDFLAGS) $(COBJECTS) libjpeg.lib
  93. djpeg.exe: $(DOBJECTS) libjpeg.lib
  94. $(CC) $(LDFLAGS) $(DOBJECTS) libjpeg.lib
  95. jpegtran.exe: $(TROBJECTS) libjpeg.lib
  96. $(CC) $(LDFLAGS) $(TROBJECTS) libjpeg.lib
  97. rdjpgcom.exe: rdjpgcom.c
  98. $(CC) $(CFLAGS) $(LDFLAGS) rdjpgcom.c
  99. wrjpgcom.exe: wrjpgcom.c
  100. $(CC) $(CFLAGS) $(LDFLAGS) wrjpgcom.c
  101. .c.obj:
  102. $(CC) $(CFLAGS) -c $<
  103. jconfig.h: jconfig.doc
  104. echo You must prepare a system-dependent jconfig.h file.
  105. echo Please read the installation directions in install.doc.
  106. exit 1
  107. clean: .SYMBOLIC
  108. - del *.obj
  109. - del libjpeg.lib
  110. - del cjpeg.exe
  111. - del djpeg.exe
  112. - del jpegtran.exe
  113. - del rdjpgcom.exe
  114. - del wrjpgcom.exe
  115. - del testout*.*
  116. test: cjpeg.exe djpeg.exe jpegtran.exe  .SYMBOLIC
  117. - del testout*.*
  118. djpeg -dct int -ppm -outfile testout.ppm  testorig.jpg
  119. djpeg -dct int -bmp -colors 256 -outfile testout.bmp  testorig.jpg
  120. cjpeg -dct int -outfile testout.jpg  testimg.ppm
  121. djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
  122. cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
  123. jpegtran -outfile testoutt.jpg testprog.jpg
  124. !ifeq SYSTEM DOS
  125. fc /b testimg.ppm testout.ppm
  126. fc /b testimg.bmp testout.bmp
  127. fc /b testimg.jpg testout.jpg
  128. fc /b testimg.ppm testoutp.ppm
  129. fc /b testimgp.jpg testoutp.jpg
  130. fc /b testorig.jpg testoutt.jpg
  131. !else
  132. echo n > n.tmp
  133. comp testimg.ppm testout.ppm < n.tmp
  134. comp testimg.bmp testout.bmp < n.tmp
  135. comp testimg.jpg testout.jpg < n.tmp
  136. comp testimg.ppm testoutp.ppm < n.tmp
  137. comp testimgp.jpg testoutp.jpg < n.tmp
  138. comp testorig.jpg testoutt.jpg < n.tmp
  139. del n.tmp
  140. !endif
  141. jcapimin.obj: jcapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  142. jcapistd.obj: jcapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  143. jccoefct.obj: jccoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  144. jccolor.obj: jccolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  145. jcdctmgr.obj: jcdctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  146. jchuff.obj: jchuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jchuff.h
  147. jcinit.obj: jcinit.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  148. jcmainct.obj: jcmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  149. jcmarker.obj: jcmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  150. jcmaster.obj: jcmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  151. jcomapi.obj: jcomapi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  152. jcparam.obj: jcparam.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  153. jcphuff.obj: jcphuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jchuff.h
  154. jcprepct.obj: jcprepct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  155. jcsample.obj: jcsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  156. jctrans.obj: jctrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  157. jdapimin.obj: jdapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  158. jdapistd.obj: jdapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  159. jdatadst.obj: jdatadst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
  160. jdatasrc.obj: jdatasrc.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
  161. jdcoefct.obj: jdcoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  162. jdcolor.obj: jdcolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  163. jddctmgr.obj: jddctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  164. jdhuff.obj: jdhuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdhuff.h
  165. jdinput.obj: jdinput.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  166. jdmainct.obj: jdmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  167. jdmarker.obj: jdmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  168. jdmaster.obj: jdmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  169. jdmerge.obj: jdmerge.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  170. jdphuff.obj: jdphuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdhuff.h
  171. jdpostct.obj: jdpostct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  172. jdsample.obj: jdsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  173. jdtrans.obj: jdtrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  174. jerror.obj: jerror.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jversion.h jerror.h
  175. jfdctflt.obj: jfdctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  176. jfdctfst.obj: jfdctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  177. jfdctint.obj: jfdctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  178. jidctflt.obj: jidctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  179. jidctfst.obj: jidctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  180. jidctint.obj: jidctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  181. jidctred.obj: jidctred.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  182. jquant1.obj: jquant1.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  183. jquant2.obj: jquant2.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  184. jutils.obj: jutils.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  185. jmemmgr.obj: jmemmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  186. jmemansi.obj: jmemansi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  187. jmemname.obj: jmemname.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  188. jmemnobs.obj: jmemnobs.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  189. jmemdos.obj: jmemdos.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  190. jmemmac.obj: jmemmac.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  191. cjpeg.obj: cjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
  192. djpeg.obj: djpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
  193. jpegtran.obj: jpegtran.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h transupp.h jversion.h
  194. rdjpgcom.obj: rdjpgcom.c jinclude.h jconfig.h
  195. wrjpgcom.obj: wrjpgcom.c jinclude.h jconfig.h
  196. cdjpeg.obj: cdjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  197. rdcolmap.obj: rdcolmap.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  198. rdswitch.obj: rdswitch.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  199. transupp.obj: transupp.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h transupp.h
  200. rdppm.obj: rdppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  201. wrppm.obj: wrppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  202. rdgif.obj: rdgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  203. wrgif.obj: wrgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  204. rdtarga.obj: rdtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  205. wrtarga.obj: wrtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  206. rdbmp.obj: rdbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  207. wrbmp.obj: wrbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  208. rdrle.obj: rdrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  209. wrrle.obj: wrrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h