home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / packer / infozip / sources / vms.zoo / make_unzip_vaxc.com < prev    next >
Encoding:
Text File  |  1992-02-23  |  1.1 KB  |  34 lines

  1. $ !
  2. $ !        "Makefile" for VMS versions of unzip and zipinfo
  3. $ !            (version:  no crypt + no inflate)
  4. $ !
  5. $ ! Find out current disk and directory
  6. $ !
  7. $ my_name = f$env("procedure")
  8. $ here = f$parse(my_name,,,"device") + f$parse(my_name,,,"directory")
  9. $ set verify    ! like "echo on", eh?
  10. $ !
  11. $ ! Do unzip:
  12. $ !
  13. $ cc unzip,extract,file_io,-
  14.     mapname,match,misc,unimplod,unreduce,unshrink,vms,VMSmunch
  15. $ link unzip,extract,file_io,mapname,match,misc,-
  16.     unimplod,unreduce,unshrink,vms,VMSmunch, sys$input:/opt
  17.  sys$share:vaxcrtl.exe/shareable
  18. ! Next line:  put a similar line (full pathname for unzip.exe) in login.com.
  19. ! Remember to include leading "$" before disk name.
  20. $ unzip == "$''here'unzip.exe"        ! set up symbol to use unzip
  21. $ !
  22. $ ! Do zipinfo:
  23. $ !
  24. $ cc zipinfo
  25. $ rename misc.c misc_.c;*
  26. $ cc /def=(ZIPINFO) misc_
  27. $ rename misc_.c misc.c;*
  28. $ link zipinfo,match,misc_,VMSmunch,sys$input:/opt
  29.  sys$share:vaxcrtl.exe/shareable
  30. ! Next line:  put a similar line (full pathname for unzip.exe) in login.com.
  31. ! Remember to include leading "$" before disk name.
  32. $ zipinfo == "$''here'zipinfo.exe"    ! set up symbol to use zipinfo
  33. $ set noverify
  34.