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

图形图象

开发平台:

C/C++

  1. # Makefile for Independent JPEG Group's software
  2. # This makefile is suitable for Unix-like systems with non-ANSI compilers.
  3. # If you have an ANSI compiler, makefile.ansi is a better starting point.
  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. CFLAGS= -O
  9. # Generally, we recommend defining any configuration symbols in jconfig.h,
  10. # NOT via -D switches here.
  11. # However, any special defines for ansi2knr.c may be included here:
  12. ANSI2KNRFLAGS= 
  13. # Link-time cc options:
  14. LDFLAGS= 
  15. # To link any special libraries, add the necessary -l commands here.
  16. LDLIBS= 
  17. # Put here the object file name for the correct system-dependent memory
  18. # manager file.  For Unix this is usually jmemnobs.o, but you may want
  19. # to use jmemansi.o or jmemname.o if you have limited swap space.
  20. SYSDEPMEM= jmemnobs.o
  21. # miscellaneous OS-dependent stuff
  22. # linker
  23. LN= $(CC)
  24. # file deletion command
  25. RM= rm -f
  26. # file rename command
  27. MV= mv
  28. # library (.a) file creation command
  29. AR= ar rc
  30. # second step in .a creation (use "touch" if not needed)
  31. AR2= ranlib
  32. # End of configurable options.
  33. # source files: JPEG library proper
  34. LIBSOURCES= jcapimin.c jcapistd.c jccoefct.c jccolor.c jcdctmgr.c jchuff.c 
  35.         jcinit.c jcmainct.c jcmarker.c jcmaster.c jcomapi.c jcparam.c 
  36.         jcphuff.c jcprepct.c jcsample.c jctrans.c jdapimin.c jdapistd.c 
  37.         jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c jddctmgr.c jdhuff.c 
  38.         jdinput.c jdmainct.c jdmarker.c jdmaster.c jdmerge.c jdphuff.c 
  39.         jdpostct.c jdsample.c jdtrans.c jerror.c jfdctflt.c jfdctfst.c 
  40.         jfdctint.c jidctflt.c jidctfst.c jidctint.c jidctred.c jquant1.c 
  41.         jquant2.c jutils.c jmemmgr.c
  42. # memmgr back ends: compile only one of these into a working library
  43. SYSDEPSOURCES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemmac.c
  44. # source files: cjpeg/djpeg/jpegtran applications, also rdjpgcom/wrjpgcom
  45. APPSOURCES= cjpeg.c djpeg.c jpegtran.c rdjpgcom.c wrjpgcom.c cdjpeg.c 
  46.         rdcolmap.c rdswitch.c transupp.c rdppm.c wrppm.c rdgif.c wrgif.c 
  47.         rdtarga.c wrtarga.c rdbmp.c wrbmp.c rdrle.c wrrle.c
  48. SOURCES= $(LIBSOURCES) $(SYSDEPSOURCES) $(APPSOURCES)
  49. # files included by source files
  50. INCLUDES= jchuff.h jdhuff.h jdct.h jerror.h jinclude.h jmemsys.h jmorecfg.h 
  51.         jpegint.h jpeglib.h jversion.h cdjpeg.h cderror.h transupp.h
  52. # documentation, test, and support files
  53. DOCS= README install.doc usage.doc cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 
  54.         wrjpgcom.1 wizard.doc example.c libjpeg.doc structure.doc 
  55.         coderules.doc filelist.doc change.log
  56. MKFILES= configure makefile.cfg makefile.ansi makefile.unix makefile.bcc 
  57.         makefile.mc6 makefile.dj makefile.wat makefile.vc makelib.ds 
  58.         makeapps.ds makeproj.mac makcjpeg.st makdjpeg.st makljpeg.st 
  59.         maktjpeg.st makefile.manx makefile.sas makefile.mms makefile.vms 
  60.         makvms.opt
  61. CONFIGFILES= jconfig.cfg jconfig.bcc jconfig.mc6 jconfig.dj jconfig.wat 
  62.         jconfig.vc jconfig.mac jconfig.st jconfig.manx jconfig.sas 
  63.         jconfig.vms
  64. CONFIGUREFILES= config.guess config.sub install-sh ltconfig ltmain.sh
  65. OTHERFILES= jconfig.doc ckconfig.c ansi2knr.c ansi2knr.1 jmemdosa.asm
  66. TESTFILES= testorig.jpg testimg.ppm testimg.bmp testimg.jpg testprog.jpg 
  67.         testimgp.jpg
  68. DISTFILES= $(DOCS) $(MKFILES) $(CONFIGFILES) $(SOURCES) $(INCLUDES) 
  69.         $(CONFIGUREFILES) $(OTHERFILES) $(TESTFILES)
  70. # library object files common to compression and decompression
  71. COMOBJECTS= jcomapi.o jutils.o jerror.o jmemmgr.o $(SYSDEPMEM)
  72. # compression library object files
  73. CLIBOBJECTS= jcapimin.o jcapistd.o jctrans.o jcparam.o jdatadst.o jcinit.o 
  74.         jcmaster.o jcmarker.o jcmainct.o jcprepct.o jccoefct.o jccolor.o 
  75.         jcsample.o jchuff.o jcphuff.o jcdctmgr.o jfdctfst.o jfdctflt.o 
  76.         jfdctint.o
  77. # decompression library object files
  78. DLIBOBJECTS= jdapimin.o jdapistd.o jdtrans.o jdatasrc.o jdmaster.o 
  79.         jdinput.o jdmarker.o jdhuff.o jdphuff.o jdmainct.o jdcoefct.o 
  80.         jdpostct.o jddctmgr.o jidctfst.o jidctflt.o jidctint.o jidctred.o 
  81.         jdsample.o jdcolor.o jquant1.o jquant2.o jdmerge.o
  82. # These objectfiles are included in libjpeg.a
  83. LIBOBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
  84. # object files for sample applications (excluding library files)
  85. COBJECTS= cjpeg.o rdppm.o rdgif.o rdtarga.o rdrle.o rdbmp.o rdswitch.o 
  86.         cdjpeg.o
  87. DOBJECTS= djpeg.o wrppm.o wrgif.o wrtarga.o wrrle.o wrbmp.o rdcolmap.o 
  88.         cdjpeg.o
  89. TROBJECTS= jpegtran.o rdswitch.o cdjpeg.o transupp.o
  90. all: ansi2knr libjpeg.a cjpeg djpeg jpegtran rdjpgcom wrjpgcom
  91. # This rule causes ansi2knr to be invoked.
  92. .c.o:
  93. ./ansi2knr $*.c T$*.c
  94. $(CC) $(CFLAGS) -c T$*.c
  95. $(RM) T$*.c $*.o
  96. $(MV) T$*.o $*.o
  97. ansi2knr: ansi2knr.c
  98. $(CC) $(CFLAGS) $(ANSI2KNRFLAGS) -o ansi2knr ansi2knr.c
  99. libjpeg.a: ansi2knr $(LIBOBJECTS)
  100. $(RM) libjpeg.a
  101. $(AR) libjpeg.a  $(LIBOBJECTS)
  102. $(AR2) libjpeg.a
  103. cjpeg: ansi2knr $(COBJECTS) libjpeg.a
  104. $(LN) $(LDFLAGS) -o cjpeg $(COBJECTS) libjpeg.a $(LDLIBS)
  105. djpeg: ansi2knr $(DOBJECTS) libjpeg.a
  106. $(LN) $(LDFLAGS) -o djpeg $(DOBJECTS) libjpeg.a $(LDLIBS)
  107. jpegtran: ansi2knr $(TROBJECTS) libjpeg.a
  108. $(LN) $(LDFLAGS) -o jpegtran $(TROBJECTS) libjpeg.a $(LDLIBS)
  109. rdjpgcom: rdjpgcom.o
  110. $(LN) $(LDFLAGS) -o rdjpgcom rdjpgcom.o $(LDLIBS)
  111. wrjpgcom: wrjpgcom.o
  112. $(LN) $(LDFLAGS) -o wrjpgcom wrjpgcom.o $(LDLIBS)
  113. jconfig.h: jconfig.doc
  114. echo You must prepare a system-dependent jconfig.h file.
  115. echo Please read the installation directions in install.doc.
  116. exit 1
  117. clean:
  118. $(RM) *.o cjpeg djpeg jpegtran libjpeg.a rdjpgcom wrjpgcom
  119. $(RM) ansi2knr core testout*
  120. test: cjpeg djpeg jpegtran
  121. $(RM) testout*
  122. ./djpeg -dct int -ppm -outfile testout.ppm  testorig.jpg
  123. ./djpeg -dct int -bmp -colors 256 -outfile testout.bmp  testorig.jpg
  124. ./cjpeg -dct int -outfile testout.jpg  testimg.ppm
  125. ./djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
  126. ./cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
  127. ./jpegtran -outfile testoutt.jpg testprog.jpg
  128. cmp testimg.ppm testout.ppm
  129. cmp testimg.bmp testout.bmp
  130. cmp testimg.jpg testout.jpg
  131. cmp testimg.ppm testoutp.ppm
  132. cmp testimgp.jpg testoutp.jpg
  133. cmp testorig.jpg testoutt.jpg
  134. jcapimin.o: jcapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  135. jcapistd.o: jcapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  136. jccoefct.o: jccoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  137. jccolor.o: jccolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  138. jcdctmgr.o: jcdctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  139. jchuff.o: jchuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jchuff.h
  140. jcinit.o: jcinit.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  141. jcmainct.o: jcmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  142. jcmarker.o: jcmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  143. jcmaster.o: jcmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  144. jcomapi.o: jcomapi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  145. jcparam.o: jcparam.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  146. jcphuff.o: jcphuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jchuff.h
  147. jcprepct.o: jcprepct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  148. jcsample.o: jcsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  149. jctrans.o: jctrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  150. jdapimin.o: jdapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  151. jdapistd.o: jdapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  152. jdatadst.o: jdatadst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
  153. jdatasrc.o: jdatasrc.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
  154. jdcoefct.o: jdcoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  155. jdcolor.o: jdcolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  156. jddctmgr.o: jddctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  157. jdhuff.o: jdhuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdhuff.h
  158. jdinput.o: jdinput.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  159. jdmainct.o: jdmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  160. jdmarker.o: jdmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  161. jdmaster.o: jdmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  162. jdmerge.o: jdmerge.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  163. jdphuff.o: jdphuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdhuff.h
  164. jdpostct.o: jdpostct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  165. jdsample.o: jdsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  166. jdtrans.o: jdtrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  167. jerror.o: jerror.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jversion.h jerror.h
  168. jfdctflt.o: jfdctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  169. jfdctfst.o: jfdctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  170. jfdctint.o: jfdctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  171. jidctflt.o: jidctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  172. jidctfst.o: jidctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  173. jidctint.o: jidctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  174. jidctred.o: jidctred.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  175. jquant1.o: jquant1.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  176. jquant2.o: jquant2.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  177. jutils.o: jutils.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  178. jmemmgr.o: jmemmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  179. jmemansi.o: jmemansi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  180. jmemname.o: jmemname.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  181. jmemnobs.o: jmemnobs.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  182. jmemdos.o: jmemdos.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  183. jmemmac.o: jmemmac.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  184. cjpeg.o: cjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
  185. djpeg.o: djpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
  186. jpegtran.o: jpegtran.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h transupp.h jversion.h
  187. rdjpgcom.o: rdjpgcom.c jinclude.h jconfig.h
  188. wrjpgcom.o: wrjpgcom.c jinclude.h jconfig.h
  189. cdjpeg.o: cdjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  190. rdcolmap.o: rdcolmap.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  191. rdswitch.o: rdswitch.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  192. transupp.o: transupp.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h transupp.h
  193. rdppm.o: rdppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  194. wrppm.o: wrppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  195. rdgif.o: rdgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  196. wrgif.o: wrgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  197. rdtarga.o: rdtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  198. wrtarga.o: wrtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  199. rdbmp.o: rdbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  200. wrbmp.o: wrbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  201. rdrle.o: rdrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  202. wrrle.o: wrrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h