home *** CD-ROM | disk | FTP | other *** search
/ Encyclopedia of Graphics File Formats Companion / GFF_CD.ISO / software / unix / jpeg / jpegv4a.tar / makefile.vms < prev    next >
Makefile  |  1993-02-18  |  2KB  |  75 lines

  1. $! Makefile for Independent JPEG Group's software
  2. $!
  3. $! This is a command procedure for use on VAX/VMS systems that do not have MMS.
  4. $! It builds the JPEG software by brute force, recompiling everything whether
  5. $! or not it is necessary.  It then runs the basic self-test.
  6. $! Thanks to Rick Dyson (dyson@iowasp.physics.uiowa.edu)
  7. $! and Tim Bell (tbell@netcom.com) for their help.
  8. $!
  9. $! Read SETUP instructions before running this!!
  10. $!
  11. $ DoCompile := CC /NoDebug /Optimize /Define = (TWO_FILE_COMMANDLINE,HAVE_STDC,INCLUDES_ARE_ANSI)
  12. $!
  13. $ DoCompile jcmain.c
  14. $ DoCompile jdmain.c
  15. $ DoCompile jcmaster.c
  16. $ DoCompile jcdeflts.c
  17. $ DoCompile jcarith.c
  18. $ DoCompile jccolor.c
  19. $ DoCompile jcexpand.c
  20. $ DoCompile jchuff.c
  21. $ DoCompile jcmcu.c
  22. $ DoCompile jcpipe.c
  23. $ DoCompile jcsample.c
  24. $ DoCompile jfwddct.c
  25. $ DoCompile jwrjfif.c
  26. $ DoCompile jrdgif.c
  27. $ DoCompile jrdppm.c
  28. $ DoCompile jrdrle.c
  29. $ DoCompile jrdtarga.c
  30. $ DoCompile jdmaster.c
  31. $ DoCompile jddeflts.c
  32. $ DoCompile jbsmooth.c
  33. $ DoCompile jdarith.c
  34. $ DoCompile jdcolor.c
  35. $ DoCompile jdhuff.c
  36. $ DoCompile jdmcu.c
  37. $ DoCompile jdpipe.c
  38. $ DoCompile jdsample.c
  39. $ DoCompile jquant1.c
  40. $ DoCompile jquant2.c
  41. $ DoCompile jrevdct.c
  42. $ DoCompile jrdjfif.c
  43. $ DoCompile jwrgif.c
  44. $ DoCompile jwrppm.c
  45. $ DoCompile jwrrle.c
  46. $ DoCompile jwrtarga.c
  47. $ DoCompile jutils.c
  48. $ DoCompile jerror.c
  49. $ DoCompile jmemmgr.c
  50. $ DoCompile jmemsys.c
  51. $!
  52. $ Library /Create libjpeg.olb  jcmaster.obj,jcdeflts.obj,jcarith.obj, -
  53.           jccolor.obj,jcexpand.obj,jchuff.obj,jcmcu.obj,jcpipe.obj, -
  54.           jcsample.obj,jfwddct.obj,jwrjfif.obj,jrdgif.obj,jrdppm.obj, -
  55.           jrdrle.obj,jrdtarga.obj,jdmaster.obj,jddeflts.obj,jbsmooth.obj, -
  56.           jdarith.obj,jdcolor.obj,jdhuff.obj,jdmcu.obj,jdpipe.obj, -
  57.           jdsample.obj,jquant1.obj,jquant2.obj,jrevdct.obj,jrdjfif.obj, -
  58.           jwrgif.obj,jwrppm.obj,jwrrle.obj,jwrtarga.obj,jutils.obj, -
  59.           jerror.obj,jmemmgr.obj,jmemsys.obj
  60. $!
  61. $ Link /Executable = cjpeg.exe  jcmain.obj,libjpeg.olb/Library,Sys$Disk:[]MAKVMS.OPT/Option
  62. $!
  63. $ Link /Executable = djpeg.exe  jdmain.obj,libjpeg.olb/Library,Sys$Disk:[]MAKVMS.OPT/Option
  64. $!
  65. $! Run the self-test
  66. $!
  67. $ mcr sys$disk:[]djpeg      testorig.jpg testout.ppm
  68. $ mcr sys$disk:[]djpeg -gif testorig.jpg testout.gif
  69. $ mcr sys$disk:[]cjpeg      testimg.ppm testout.jpg
  70. $ Backup /Compare/Log testimg.ppm testout.ppm
  71. $ Backup /Compare/Log testimg.gif testout.gif
  72. $ Backup /Compare/Log testimg.jpg testout.jpg
  73. $!
  74. $ Exit
  75.