home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / xloadimg.zip / xloadimage.4.1 / jpeg / Makefile < prev    next >
Makefile  |  1993-11-08  |  6KB  |  138 lines

  1. # Makefile for Independent JPEG Group's software using the xloadimage
  2. # configuration information.  This is loosely based on makefile.unix.
  3.  
  4. include ../Make.conf
  5. include ../jpeg.conf
  6.  
  7. CFLAGS= $(CC_OPT_FLAGS) $(JPEG_CC_FLAGS)
  8.  
  9. # Link-time cc options:
  10. LDFLAGS= 
  11.  
  12. # To link any special libraries, add the necessary -l commands here.
  13. # In particular, on some versions of HP-UX (and probably other SysV-derived
  14. # systems) there is a faster alternate malloc(3) library that you can use
  15. # by adding "-lmalloc" to this line.
  16. LDLIBS= 
  17.  
  18. # miscellaneous OS-dependent stuff
  19. # linker
  20. LD= $(CC)
  21.  
  22. # source files (independently compilable files)
  23. SOURCES= jbsmooth.c jcarith.c jccolor.c jcdeflts.c jcexpand.c jchuff.c \
  24.         jcmain.c jcmaster.c jcmcu.c jcpipe.c jcsample.c jdarith.c jdcolor.c \
  25.         jddeflts.c jdhuff.c jdmain.c jdmaster.c jdmcu.c jdpipe.c jdsample.c \
  26.         jerror.c jquant1.c jquant2.c jfwddct.c jrevdct.c jutils.c jmemmgr.c \
  27.         jrdjfif.c jrdgif.c jrdppm.c jrdrle.c jrdtarga.c jwrjfif.c jwrgif.c \
  28.         jwrppm.c jwrrle.c jwrtarga.c
  29. # virtual source files (not present in distribution file, see SETUP)
  30. VIRTSOURCES= jmemsys.c
  31. # system-dependent implementations of virtual source files
  32. SYSDEPFILES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemdos.h \
  33.         jmemdosa.asm
  34. # files included by source files
  35. INCLUDES= jinclude.h jconfig.h jpegdata.h jversion.h jmemsys.h
  36. # documentation, test, and support files
  37. DOCS= README SETUP USAGE CHANGELOG cjpeg.1 djpeg.1 architecture codingrules
  38. MAKEFILES= makefile.ansi makefile.unix makefile.manx makefile.sas \
  39.         makcjpeg.st makdjpeg.st makljpeg.st makefile.mc5 makefile.mc6 \
  40.         makefile.bcc makefile.mms makefile.vms makvms.opt
  41. OTHERFILES= ansi2knr.c ckconfig.c example.c
  42. TESTFILES= testorig.jpg testimg.ppm testimg.gif testimg.jpg
  43. DISTFILES= $(DOCS) $(MAKEFILES) $(SOURCES) $(SYSDEPFILES) $(INCLUDES) \
  44.         $(OTHERFILES) $(TESTFILES)
  45. # objectfiles common to cjpeg and djpeg
  46. COMOBJECTS= jutils.o jerror.o jmemmgr.o jmemsys.o
  47. # compression objectfiles
  48. CLIBOBJECTS= jcmaster.o jcdeflts.o jcarith.o jccolor.o jcexpand.o jchuff.o \
  49.         jcmcu.o jcpipe.o jcsample.o jfwddct.o jwrjfif.o jrdgif.o jrdppm.o \
  50.         jrdrle.o jrdtarga.o
  51. COBJECTS= jcmain.o $(CLIBOBJECTS) $(COMOBJECTS)
  52. # decompression objectfiles
  53. DLIBOBJECTS= jdmaster.o jddeflts.o jbsmooth.o jdarith.o jdcolor.o jdhuff.o \
  54.         jdmcu.o jdpipe.o jdsample.o jquant1.o jquant2.o jrevdct.o jrdjfif.o \
  55.         jwrgif.o jwrppm.o jwrrle.o jwrtarga.o
  56. DOBJECTS= jdmain.o $(DLIBOBJECTS) $(COMOBJECTS)
  57. # These objectfiles are included in libjpeg.a
  58. LIBOBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
  59.  
  60. all: ansi2knr libjpeg.a
  61.  
  62. ansi2knr: ansi2knr.c
  63.     $(CC) $(CFLAGS) -o ansi2knr ansi2knr.c
  64.  
  65. cjpeg: ansi2knr $(COBJECTS)
  66.     $(LD) $(LDFLAGS) -o cjpeg $(COBJECTS) $(LDLIBS)
  67.  
  68. djpeg: ansi2knr $(DOBJECTS)
  69.     $(LD) $(LDFLAGS) -o djpeg $(DOBJECTS) $(LDLIBS)
  70.  
  71. # libjpeg.a is useful if you are including the JPEG software in a larger
  72. # program; you'd include it in your link, rather than the individual modules.
  73. libjpeg.a: ansi2knr $(LIBOBJECTS)
  74.     $(RM) libjpeg.a
  75.     $(AR) libjpeg.a  $(LIBOBJECTS)
  76.     $(RANLIB) libjpeg.a
  77.  
  78. #if there isn't a jmemsys, use the one most unix systems like
  79. jmemsys.c:
  80.     $(CP) jmemnobs.c jmemsys.c
  81.  
  82. clean:
  83.     $(RM) *.o cjpeg djpeg libjpeg.a ansi2knr core tmpansi.* testout.* *~
  84.  
  85. distribute:
  86.     $(RM) jpegsrc.tar*
  87.     tar cvf jpegsrc.tar $(DISTFILES)
  88.     compress -v jpegsrc.tar
  89.  
  90. test: cjpeg djpeg
  91.     $(RM) testout.ppm testout.gif testout.jpg
  92.     ./djpeg testorig.jpg >testout.ppm
  93.     ./djpeg -gif testorig.jpg >testout.gif
  94.     ./cjpeg testimg.ppm >testout.jpg
  95.     cmp testimg.ppm testout.ppm
  96.     cmp testimg.gif testout.gif
  97.     cmp testimg.jpg testout.jpg
  98.  
  99.  
  100. jbsmooth.o : jbsmooth.c jinclude.h jconfig.h jpegdata.h 
  101. jcarith.o : jcarith.c jinclude.h jconfig.h jpegdata.h 
  102. jccolor.o : jccolor.c jinclude.h jconfig.h jpegdata.h 
  103. jcdeflts.o : jcdeflts.c jinclude.h jconfig.h jpegdata.h 
  104. jcexpand.o : jcexpand.c jinclude.h jconfig.h jpegdata.h 
  105. jchuff.o : jchuff.c jinclude.h jconfig.h jpegdata.h 
  106. jcmain.o : jcmain.c jinclude.h jconfig.h jpegdata.h jversion.h 
  107. jcmaster.o : jcmaster.c jinclude.h jconfig.h jpegdata.h 
  108. jcmcu.o : jcmcu.c jinclude.h jconfig.h jpegdata.h 
  109. jcpipe.o : jcpipe.c jinclude.h jconfig.h jpegdata.h 
  110. jcsample.o : jcsample.c jinclude.h jconfig.h jpegdata.h 
  111. jdarith.o : jdarith.c jinclude.h jconfig.h jpegdata.h 
  112. jdcolor.o : jdcolor.c jinclude.h jconfig.h jpegdata.h 
  113. jddeflts.o : jddeflts.c jinclude.h jconfig.h jpegdata.h 
  114. jdhuff.o : jdhuff.c jinclude.h jconfig.h jpegdata.h 
  115. jdmain.o : jdmain.c jinclude.h jconfig.h jpegdata.h jversion.h 
  116. jdmaster.o : jdmaster.c jinclude.h jconfig.h jpegdata.h 
  117. jdmcu.o : jdmcu.c jinclude.h jconfig.h jpegdata.h 
  118. jdpipe.o : jdpipe.c jinclude.h jconfig.h jpegdata.h 
  119. jdsample.o : jdsample.c jinclude.h jconfig.h jpegdata.h 
  120. jerror.o : jerror.c jinclude.h jconfig.h jpegdata.h 
  121. jquant1.o : jquant1.c jinclude.h jconfig.h jpegdata.h 
  122. jquant2.o : jquant2.c jinclude.h jconfig.h jpegdata.h 
  123. jfwddct.o : jfwddct.c jinclude.h jconfig.h jpegdata.h 
  124. jrevdct.o : jrevdct.c jinclude.h jconfig.h jpegdata.h 
  125. jutils.o : jutils.c jinclude.h jconfig.h jpegdata.h 
  126. jmemmgr.o : jmemmgr.c jinclude.h jconfig.h jpegdata.h jmemsys.h 
  127. jrdjfif.o : jrdjfif.c jinclude.h jconfig.h jpegdata.h 
  128. jrdgif.o : jrdgif.c jinclude.h jconfig.h jpegdata.h 
  129. jrdppm.o : jrdppm.c jinclude.h jconfig.h jpegdata.h 
  130. jrdrle.o : jrdrle.c jinclude.h jconfig.h jpegdata.h 
  131. jrdtarga.o : jrdtarga.c jinclude.h jconfig.h jpegdata.h 
  132. jwrjfif.o : jwrjfif.c jinclude.h jconfig.h jpegdata.h 
  133. jwrgif.o : jwrgif.c jinclude.h jconfig.h jpegdata.h 
  134. jwrppm.o : jwrppm.c jinclude.h jconfig.h jpegdata.h 
  135. jwrrle.o : jwrrle.c jinclude.h jconfig.h jpegdata.h 
  136. jwrtarga.o : jwrtarga.c jinclude.h jconfig.h jpegdata.h 
  137. jmemsys.o : jmemsys.c jinclude.h jconfig.h jpegdata.h jmemsys.h 
  138.