home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / hp1000 / hpmker.mak < prev    next >
Text File  |  2020-01-01  |  1KB  |  38 lines

  1. #
  2. #     A Makefile for Kermit under RTE-6 or RTE-A
  3. #
  4. includes == kcmnds.ftni kconcw.ftni kercmd.ftni kercnf.ftni kercom.ftni 
  5. includes == &includes kerdbg.ftni kerfil.ftni kersta.ftni  
  6.  
  7. kermit.rel: kermit.ftn &includes
  8.  =ftn7x kermit,,-,,s
  9.  
  10. \$k6subs.lib: k6subs.ftn &includes
  11.  =ftn7x k6subs,,-,,s
  12.  =lindx k6subs.rel \$k6subs.lib
  13.  =cix in pu k6subs.rel
  14.  
  15. \$kasubs.lib: kasubs.ftn &includes
  16.  =ftn7x kasubs,,-,,s
  17.  =lindx kasubs.rel \$kasubs.lib
  18.  =cix in pu kasubs.rel
  19.  
  20. kermit.run: kermit.rel \$kasubs.lib \$k6subs.lib kermit.lod
  21.  >link kermit.lod
  22.  
  23. #     In the following, we don't care if an error occurs in the
  24. #     initial renaming - this step is only to recover the old
  25. #     help file (it is, after all, better than nothing) if the
  26. #     final rename fails.
  27. kermit.hlp: kermit.text
  28.  cix in rn .hlp .ohlp             # in case we can't rebuild it
  29.  cix in pu .hlp                   # be sure KERMIT.HLP no longer exists
  30.  genix kermit.text,,kermit.hlp    # this should rebuild it, but cannot check
  31.  =dl kermit.hlp,,0                # does it exist?
  32.   ?cix in rn .ohlp .hlp           # no - bring the old one back
  33.   ?touch kermit.hlp               #      but show it as changed
  34.  cix in pu kermit.ohlp            # else remove our insurance
  35.  
  36.