home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / ZIP19P1.ZIP / vms / make_vaxc.com < prev    next >
Text File  |  1993-01-23  |  1KB  |  42 lines

  1. $ !
  2. $ !     "Makefile" for VMS versions of Zip, ZipNote,
  3. $ !     and ZipSplit (stolen from Unzip)
  4. $ !
  5. $ !      IMPORTANT NOTE: do not forget to set the symbols as said below
  6. $ !                      in the Symbols section.
  7. $ !
  8. $ set verify    ! like "echo on", eh?
  9. $ !
  10. $ !------------------------------- Zip section --------------------------------
  11. $ !
  12. $ cc zip, zipfile, zipup, fileio, util, deflate, globals,-
  13.     trees, bits, vms, VMSmunch
  14. $ link zip, zipfile, zipup, fileio, util, deflate, globals,-
  15.     trees, bits, vms, VMSmunch, sys$input:/opt
  16. sys$share:vaxcrtl.exe/shareable
  17. $ !
  18. $ !-------------------------- Zip utilities section ---------------------------
  19. $ !
  20. $ cc /def=UTIL /obj=zipfile_.obj zipfile.c
  21. $ cc /def=UTIL /obj=zipup_.obj zipup.c
  22. $ cc /def=UTIL /obj=fileio_.obj fileio.c
  23. $ cc /def=UTIL /obj=util_.obj util.c
  24. $ cc zipnote, zipsplit
  25. $ link zipnote, zipfile_, zipup_, fileio_, util_, globals, VMSmunch,-
  26.     sys$input:/opt
  27. sys$share:vaxcrtl.exe/shareable
  28. $ link zipsplit, zipfile_, zipup_, fileio_, util_, globals, VMSmunch,-
  29.     sys$input:/opt
  30. sys$share:vaxcrtl.exe/shareable
  31. $ !
  32. $ !----------------------------- Symbols section ------------------------------
  33. $ !
  34. $ ! Set up symbols for the various executables.  Edit the example below,
  35. $ ! changing "disk:[directory]" as appropriate.
  36. $ !
  37. $ zip        == "$disk:[directory]zip.exe"
  38. $ zipnote    == "$disk:[directory]zipnote.exe"
  39. $ zipsplit    == "$disk:[directory]zipsplit.exe"
  40. $ !
  41. $ set noverify
  42.