home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / xloadimg.zip / xloadimage.4.1 / jpeg / makefile.gcc < prev    next >
Makefile  |  1996-03-18  |  7KB  |  158 lines

  1. # Makefile for Independent JPEG Group's software
  2.  
  3. # This makefile is suitable for Unix-like systems with ANSI-capable compilers.
  4. # If you have a non-ANSI compiler, makefile.unix is a better starting point.
  5.  
  6. # Read SETUP instructions before saying "make" !!
  7.  
  8. # The name of your C compiler:
  9. CC= gcc
  10.  
  11. # You may need to adjust these cc options:
  12. CFLAGS= -c -m486 -O2 -fno-strength-reduce -Zmtd -Zsysv-signals 
  13. # In particular:
  14. #   Add -DBSD if on a pure BSD system (see jinclude.h).
  15. #   Add -DMEM_STATS to enable gathering of memory usage statistics.
  16. #   You may also want to add -DTWO_FILE_COMMANDLINE or -D switches for other
  17. #   symbols listed in jconfig.h, if you prefer not to change jconfig.h.
  18.  
  19. # Link-time cc options:
  20. LDFLAGS= 
  21.  
  22. # To link any special libraries, add the necessary -l commands here.
  23. # In particular, on some versions of HP-UX (and probably other SysV-derived
  24. # systems) there is a faster alternate malloc(3) library that you can use
  25. # by adding "-lmalloc" to this line.
  26. LDLIBS= 
  27.  
  28. # miscellaneous OS-dependent stuff
  29. # linker
  30. LN= $(CC) 
  31. # file deletion command
  32. RM= rm -f
  33. # library (.a) file creation command
  34. AR= ar rc
  35. # second step in .a creation (use "touch" if not needed)
  36. #AR2= ranlib
  37.  
  38.  
  39. # source files (independently compilable files)
  40. SOURCES= jbsmooth.c jcarith.c jccolor.c jcdeflts.c jcexpand.c jchuff.c \
  41.         jcmain.c jcmaster.c jcmcu.c jcpipe.c jcsample.c jdarith.c jdcolor.c \
  42.         jddeflts.c jdhuff.c jdmain.c jdmaster.c jdmcu.c jdpipe.c jdsample.c \
  43.         jerror.c jquant1.c jquant2.c jfwddct.c jrevdct.c jutils.c jmemmgr.c \
  44.         jrdjfif.c jrdgif.c jrdppm.c jrdrle.c jrdtarga.c jwrjfif.c jwrgif.c \
  45.         jwrppm.c jwrrle.c jwrtarga.c
  46. # virtual source files (not present in distribution file, see SETUP)
  47. VIRTSOURCES= jmemsys.c
  48. # system-dependent implementations of virtual source files
  49. SYSDEPFILES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemdos.h \
  50.         jmemdosa.asm
  51. # files included by source files
  52. INCLUDES= jinclude.h jconfig.h jpegdata.h jversion.h jmemsys.h
  53. # documentation, test, and support files
  54. DOCS= README SETUP USAGE CHANGELOG cjpeg.1 djpeg.1 architecture codingrules
  55. MAKEFILES= makefile.ansi makefile.unix makefile.manx makefile.sas \
  56.         makcjpeg.st makdjpeg.st makljpeg.st makefile.mc5 makefile.mc6 \
  57.         makefile.bcc makefile.icc makljpeg.icc makefile.mms makefile.vms \
  58.         makvms.opt
  59. OTHERFILES= ansi2knr.c ckconfig.c example.c
  60. TESTFILES= testorig.jpg testimg.ppm testimg.gif testimg.jpg
  61. DISTFILES= $(DOCS) $(MAKEFILES) $(SOURCES) $(SYSDEPFILES) $(INCLUDES) \
  62.         $(OTHERFILES) $(TESTFILES)
  63. # objectfiles common to cjpeg and djpeg
  64. COMOBJECTS= jutils.o jerror.o jmemmgr.o jmemsys.o
  65. # compression objectfiles
  66. CLIBOBJECTS= jcmaster.o jcdeflts.o jcarith.o jccolor.o jcexpand.o jchuff.o \
  67.         jcmcu.o jcpipe.o jcsample.o jfwddct.o jwrjfif.o jrdgif.o jrdppm.o \
  68.         jrdrle.o jrdtarga.o
  69. COBJECTS= jcmain.o $(CLIBOBJECTS) $(COMOBJECTS)
  70. # decompression objectfiles
  71. DLIBOBJECTS= jdmaster.o jddeflts.o jbsmooth.o jdarith.o jdcolor.o jdhuff.o \
  72.         jdmcu.o jdpipe.o jdsample.o jquant1.o jquant2.o jrevdct.o jrdjfif.o \
  73.         jwrgif.o jwrppm.o jwrrle.o jwrtarga.o
  74. DOBJECTS= jdmain.o $(DLIBOBJECTS) $(COMOBJECTS)
  75. # These objectfiles are included in libjpeg.a
  76. LIBOBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
  77.  
  78.  
  79. all: cjpeg djpeg
  80. # By default, libjpeg.a is not built unless you explicitly request it.
  81. # You can add libjpeg.a to the line above if you want it built by default.
  82.  
  83.  
  84. cjpeg: $(COBJECTS)
  85.     $(LN) $(LDFLAGS) -o cjpeg $(COBJECTS) $(LDLIBS)
  86.  
  87. djpeg: $(DOBJECTS)
  88.     $(LN) $(LDFLAGS) -o djpeg $(DOBJECTS) $(LDLIBS)
  89.  
  90. # libjpeg.a is useful if you are including the JPEG software in a larger
  91. # program; you'd include it in your link, rather than the individual modules.
  92. libjpeg.a: $(LIBOBJECTS)
  93.     $(RM) libjpeg.a
  94.     $(AR) libjpeg.a  $(LIBOBJECTS)
  95. #    $(AR2) libjpeg.a
  96.  
  97. jmemsys.c:
  98.     echo You must select a system-dependent jmemsys.c file.
  99.     echo Please read the SETUP directions.
  100.     exit 1
  101.  
  102. clean:
  103.     $(RM) *.o cjpeg djpeg libjpeg.a core testout.*
  104.  
  105. distribute:
  106.     $(RM) jpegsrc.tar*
  107.     tar cvf jpegsrc.tar $(DISTFILES)
  108.     compress -v jpegsrc.tar
  109.  
  110. test: cjpeg djpeg
  111.     $(RM) testout.ppm testout.gif testout.jpg
  112.     ./djpeg testorig.jpg >testout.ppm
  113.     ./djpeg -gif testorig.jpg >testout.gif
  114.     ./cjpeg testimg.ppm >testout.jpg
  115.     cmp testimg.ppm testout.ppm
  116.     cmp testimg.gif testout.gif
  117.     cmp testimg.jpg testout.jpg
  118.  
  119.  
  120. jbsmooth.o : jbsmooth.c jinclude.h jconfig.h jpegdata.h 
  121. jcarith.o : jcarith.c jinclude.h jconfig.h jpegdata.h 
  122. jccolor.o : jccolor.c jinclude.h jconfig.h jpegdata.h 
  123. jcdeflts.o : jcdeflts.c jinclude.h jconfig.h jpegdata.h 
  124. jcexpand.o : jcexpand.c jinclude.h jconfig.h jpegdata.h 
  125. jchuff.o : jchuff.c jinclude.h jconfig.h jpegdata.h 
  126. jcmain.o : jcmain.c jinclude.h jconfig.h jpegdata.h jversion.h 
  127. jcmaster.o : jcmaster.c jinclude.h jconfig.h jpegdata.h 
  128. jcmcu.o : jcmcu.c jinclude.h jconfig.h jpegdata.h 
  129. jcpipe.o : jcpipe.c jinclude.h jconfig.h jpegdata.h 
  130. jcsample.o : jcsample.c jinclude.h jconfig.h jpegdata.h 
  131. jdarith.o : jdarith.c jinclude.h jconfig.h jpegdata.h 
  132. jdcolor.o : jdcolor.c jinclude.h jconfig.h jpegdata.h 
  133. jddeflts.o : jddeflts.c jinclude.h jconfig.h jpegdata.h 
  134. jdhuff.o : jdhuff.c jinclude.h jconfig.h jpegdata.h 
  135. jdmain.o : jdmain.c jinclude.h jconfig.h jpegdata.h jversion.h 
  136. jdmaster.o : jdmaster.c jinclude.h jconfig.h jpegdata.h 
  137. jdmcu.o : jdmcu.c jinclude.h jconfig.h jpegdata.h 
  138. jdpipe.o : jdpipe.c jinclude.h jconfig.h jpegdata.h 
  139. jdsample.o : jdsample.c jinclude.h jconfig.h jpegdata.h 
  140. jerror.o : jerror.c jinclude.h jconfig.h jpegdata.h 
  141. jquant1.o : jquant1.c jinclude.h jconfig.h jpegdata.h 
  142. jquant2.o : jquant2.c jinclude.h jconfig.h jpegdata.h 
  143. jfwddct.o : jfwddct.c jinclude.h jconfig.h jpegdata.h 
  144. jrevdct.o : jrevdct.c jinclude.h jconfig.h jpegdata.h 
  145. jutils.o : jutils.c jinclude.h jconfig.h jpegdata.h 
  146. jmemmgr.o : jmemmgr.c jinclude.h jconfig.h jpegdata.h jmemsys.h 
  147. jrdjfif.o : jrdjfif.c jinclude.h jconfig.h jpegdata.h 
  148. jrdgif.o : jrdgif.c jinclude.h jconfig.h jpegdata.h 
  149. jrdppm.o : jrdppm.c jinclude.h jconfig.h jpegdata.h 
  150. jrdrle.o : jrdrle.c jinclude.h jconfig.h jpegdata.h 
  151. jrdtarga.o : jrdtarga.c jinclude.h jconfig.h jpegdata.h 
  152. jwrjfif.o : jwrjfif.c jinclude.h jconfig.h jpegdata.h 
  153. jwrgif.o : jwrgif.c jinclude.h jconfig.h jpegdata.h 
  154. jwrppm.o : jwrppm.c jinclude.h jconfig.h jpegdata.h 
  155. jwrrle.o : jwrrle.c jinclude.h jconfig.h jpegdata.h 
  156. jwrtarga.o : jwrtarga.c jinclude.h jconfig.h jpegdata.h 
  157. jmemsys.o : jmemsys.c jinclude.h jconfig.h jpegdata.h jmemsys.h 
  158.