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

图形图象

开发平台:

C/C++

  1. # Makefile for Independent JPEG Group's software
  2. # This makefile is for Amiga systems using Manx Aztec C ver 5.x.
  3. # Thanks to D.J. James (djjames@cup.portal.com) for this version.
  4. # Read installation instructions before saying "make" !!
  5. # The name of your C compiler:
  6. CC= cc
  7. # You may need to adjust these cc options:
  8. # Uncomment for generic 68000 code (will work on any Amiga)
  9. ARCHFLAGS= -sn
  10. # Uncomment for 68020/68030 code (faster, but won't run on 68000 CPU)
  11. #ARCHFLAGS= -c2
  12. CFLAGS= -MC -MD $(ARCHFLAGS) -spfam -r4
  13. # Link-time cc options:
  14. LDFLAGS= -g
  15. # To link any special libraries, add the necessary -l commands here.
  16. LDLIBS= -lml -lcl
  17. # Put here the object file name for the correct system-dependent memory
  18. # manager file.  For Amiga we recommend jmemname.o.
  19. SYSDEPMEM= jmemname.o
  20. # miscellaneous OS-dependent stuff
  21. # linker
  22. LN= ln
  23. # file deletion command
  24. RM= delete quiet
  25. # library (.lib) file creation command
  26. AR= lb
  27. # End of configurable options.
  28. # source files: JPEG library proper
  29. LIBSOURCES= jcapimin.c jcapistd.c jccoefct.c jccolor.c jcdctmgr.c jchuff.c 
  30.         jcinit.c jcmainct.c jcmarker.c jcmaster.c jcomapi.c jcparam.c 
  31.         jcphuff.c jcprepct.c jcsample.c jctrans.c jdapimin.c jdapistd.c 
  32.         jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c jddctmgr.c jdhuff.c 
  33.         jdinput.c jdmainct.c jdmarker.c jdmaster.c jdmerge.c jdphuff.c 
  34.         jdpostct.c jdsample.c jdtrans.c jerror.c jfdctflt.c jfdctfst.c 
  35.         jfdctint.c jidctflt.c jidctfst.c jidctint.c jidctred.c jquant1.c 
  36.         jquant2.c jutils.c jmemmgr.c
  37. # memmgr back ends: compile only one of these into a working library
  38. SYSDEPSOURCES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemmac.c
  39. # source files: cjpeg/djpeg/jpegtran applications, also rdjpgcom/wrjpgcom
  40. APPSOURCES= cjpeg.c djpeg.c jpegtran.c rdjpgcom.c wrjpgcom.c cdjpeg.c 
  41.         rdcolmap.c rdswitch.c transupp.c rdppm.c wrppm.c rdgif.c wrgif.c 
  42.         rdtarga.c wrtarga.c rdbmp.c wrbmp.c rdrle.c wrrle.c
  43. SOURCES= $(LIBSOURCES) $(SYSDEPSOURCES) $(APPSOURCES)
  44. # files included by source files
  45. INCLUDES= jchuff.h jdhuff.h jdct.h jerror.h jinclude.h jmemsys.h jmorecfg.h 
  46.         jpegint.h jpeglib.h jversion.h cdjpeg.h cderror.h transupp.h
  47. # documentation, test, and support files
  48. DOCS= README install.doc usage.doc cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 
  49.         wrjpgcom.1 wizard.doc example.c libjpeg.doc structure.doc 
  50.         coderules.doc filelist.doc change.log
  51. MKFILES= configure makefile.cfg makefile.ansi makefile.unix makefile.bcc 
  52.         makefile.mc6 makefile.dj makefile.wat makefile.vc makelib.ds 
  53.         makeapps.ds makeproj.mac makcjpeg.st makdjpeg.st makljpeg.st 
  54.         maktjpeg.st makefile.manx makefile.sas makefile.mms makefile.vms 
  55.         makvms.opt
  56. CONFIGFILES= jconfig.cfg jconfig.bcc jconfig.mc6 jconfig.dj jconfig.wat 
  57.         jconfig.vc jconfig.mac jconfig.st jconfig.manx jconfig.sas 
  58.         jconfig.vms
  59. CONFIGUREFILES= config.guess config.sub install-sh ltconfig ltmain.sh
  60. OTHERFILES= jconfig.doc ckconfig.c ansi2knr.c ansi2knr.1 jmemdosa.asm
  61. TESTFILES= testorig.jpg testimg.ppm testimg.bmp testimg.jpg testprog.jpg 
  62.         testimgp.jpg
  63. DISTFILES= $(DOCS) $(MKFILES) $(CONFIGFILES) $(SOURCES) $(INCLUDES) 
  64.         $(CONFIGUREFILES) $(OTHERFILES) $(TESTFILES)
  65. # library object files common to compression and decompression
  66. COMOBJECTS= jcomapi.o jutils.o jerror.o jmemmgr.o $(SYSDEPMEM)
  67. # compression library object files
  68. CLIBOBJECTS= jcapimin.o jcapistd.o jctrans.o jcparam.o jdatadst.o jcinit.o 
  69.         jcmaster.o jcmarker.o jcmainct.o jcprepct.o jccoefct.o jccolor.o 
  70.         jcsample.o jchuff.o jcphuff.o jcdctmgr.o jfdctfst.o jfdctflt.o 
  71.         jfdctint.o
  72. # decompression library object files
  73. DLIBOBJECTS= jdapimin.o jdapistd.o jdtrans.o jdatasrc.o jdmaster.o 
  74.         jdinput.o jdmarker.o jdhuff.o jdphuff.o jdmainct.o jdcoefct.o 
  75.         jdpostct.o jddctmgr.o jidctfst.o jidctflt.o jidctint.o jidctred.o 
  76.         jdsample.o jdcolor.o jquant1.o jquant2.o jdmerge.o
  77. # These objectfiles are included in libjpeg.lib
  78. LIBOBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
  79. # object files for sample applications (excluding library files)
  80. COBJECTS= cjpeg.o rdppm.o rdgif.o rdtarga.o rdrle.o rdbmp.o rdswitch.o 
  81.         cdjpeg.o
  82. DOBJECTS= djpeg.o wrppm.o wrgif.o wrtarga.o wrrle.o wrbmp.o rdcolmap.o 
  83.         cdjpeg.o
  84. TROBJECTS= jpegtran.o rdswitch.o cdjpeg.o transupp.o
  85. all: libjpeg.lib cjpeg djpeg jpegtran rdjpgcom wrjpgcom
  86. libjpeg.lib: $(LIBOBJECTS)
  87. -$(RM) libjpeg.lib
  88. $(AR) libjpeg.lib  $(LIBOBJECTS)
  89. cjpeg: $(COBJECTS) libjpeg.lib
  90. $(LN) $(LDFLAGS) -o cjpeg $(COBJECTS) libjpeg.lib $(LDLIBS)
  91. djpeg: $(DOBJECTS) libjpeg.lib
  92. $(LN) $(LDFLAGS) -o djpeg $(DOBJECTS) libjpeg.lib $(LDLIBS)
  93. jpegtran: $(TROBJECTS) libjpeg.lib
  94. $(LN) $(LDFLAGS) -o jpegtran $(TROBJECTS) libjpeg.lib $(LDLIBS)
  95. rdjpgcom: rdjpgcom.o
  96. $(LN) $(LDFLAGS) -o rdjpgcom rdjpgcom.o $(LDLIBS)
  97. wrjpgcom: wrjpgcom.o
  98. $(LN) $(LDFLAGS) -o wrjpgcom wrjpgcom.o $(LDLIBS)
  99. jconfig.h: jconfig.doc
  100. echo You must prepare a system-dependent jconfig.h file.
  101. echo Please read the installation directions in install.doc.
  102. exit 1
  103. clean:
  104. -$(RM) *.o cjpeg djpeg jpegtran libjpeg.lib rdjpgcom wrjpgcom
  105. -$(RM) core testout*.*
  106. test: cjpeg djpeg jpegtran
  107. -$(RM) testout*.*
  108. djpeg -dct int -ppm -outfile testout.ppm  testorig.jpg
  109. djpeg -dct int -bmp -colors 256 -outfile testout.bmp  testorig.jpg
  110. cjpeg -dct int -outfile testout.jpg  testimg.ppm
  111. djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
  112. cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
  113. jpegtran -outfile testoutt.jpg testprog.jpg
  114. cmp testimg.ppm testout.ppm
  115. cmp testimg.bmp testout.bmp
  116. cmp testimg.jpg testout.jpg
  117. cmp testimg.ppm testoutp.ppm
  118. cmp testimgp.jpg testoutp.jpg
  119. cmp testorig.jpg testoutt.jpg
  120. jcapimin.o: jcapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  121. jcapistd.o: jcapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  122. jccoefct.o: jccoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  123. jccolor.o: jccolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  124. jcdctmgr.o: jcdctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  125. jchuff.o: jchuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jchuff.h
  126. jcinit.o: jcinit.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  127. jcmainct.o: jcmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  128. jcmarker.o: jcmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  129. jcmaster.o: jcmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  130. jcomapi.o: jcomapi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  131. jcparam.o: jcparam.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  132. jcphuff.o: jcphuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jchuff.h
  133. jcprepct.o: jcprepct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  134. jcsample.o: jcsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  135. jctrans.o: jctrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  136. jdapimin.o: jdapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  137. jdapistd.o: jdapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  138. jdatadst.o: jdatadst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
  139. jdatasrc.o: jdatasrc.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
  140. jdcoefct.o: jdcoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  141. jdcolor.o: jdcolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  142. jddctmgr.o: jddctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  143. jdhuff.o: jdhuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdhuff.h
  144. jdinput.o: jdinput.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  145. jdmainct.o: jdmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  146. jdmarker.o: jdmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  147. jdmaster.o: jdmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  148. jdmerge.o: jdmerge.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  149. jdphuff.o: jdphuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdhuff.h
  150. jdpostct.o: jdpostct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  151. jdsample.o: jdsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  152. jdtrans.o: jdtrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  153. jerror.o: jerror.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jversion.h jerror.h
  154. jfdctflt.o: jfdctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  155. jfdctfst.o: jfdctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  156. jfdctint.o: jfdctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  157. jidctflt.o: jidctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  158. jidctfst.o: jidctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  159. jidctint.o: jidctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  160. jidctred.o: jidctred.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  161. jquant1.o: jquant1.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  162. jquant2.o: jquant2.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  163. jutils.o: jutils.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  164. jmemmgr.o: jmemmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  165. jmemansi.o: jmemansi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  166. jmemname.o: jmemname.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  167. jmemnobs.o: jmemnobs.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  168. jmemdos.o: jmemdos.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  169. jmemmac.o: jmemmac.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  170. cjpeg.o: cjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
  171. djpeg.o: djpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
  172. jpegtran.o: jpegtran.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h transupp.h jversion.h
  173. rdjpgcom.o: rdjpgcom.c jinclude.h jconfig.h
  174. wrjpgcom.o: wrjpgcom.c jinclude.h jconfig.h
  175. cdjpeg.o: cdjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  176. rdcolmap.o: rdcolmap.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  177. rdswitch.o: rdswitch.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  178. transupp.o: transupp.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h transupp.h
  179. rdppm.o: rdppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  180. wrppm.o: wrppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  181. rdgif.o: rdgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  182. wrgif.o: wrgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  183. rdtarga.o: rdtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  184. wrtarga.o: wrtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  185. rdbmp.o: rdbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  186. wrbmp.o: wrbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  187. rdrle.o: rdrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  188. wrrle.o: wrrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h