home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / extra / nyenhuis2.arc / KERMIT next >
Text File  |  1988-07-01  |  2KB  |  59 lines

  1. # File msthpx.mak
  2. # Make file for MS Kermit using Microsoft's Make version 4.00
  3. # Written by Joe R. Doupnik
  4. # Edit this file for your system dependent modules. Blank lines are mandatory.
  5.  
  6. # The inference macro below calls MASM to create .obj modules.
  7.  .asm.obj:
  8.     MASM $*.asm;
  9.  
  10. # These are the dependency relations (.obj depends on .asm and .h):
  11. # First, the system independent files for Kermit-MS.
  12.  
  13. # Make this    using MASM on these two files if either has changed
  14.  
  15. msscmd.obj:    msscmd.asm mssdef.h
  16.  
  17. msscom.obj:    msscom.asm mssdef.h
  18.  
  19. mssfil.obj:    mssfil.asm mssdef.h
  20.  
  21. mssker.obj:    mssker.asm mssdef.h
  22.  
  23. mssrcv.obj:    mssrcv.asm mssdef.h
  24.  
  25. mssscp.obj:    mssscp.asm mssdef.h
  26.  
  27. msssen.obj:    msssen.asm mssdef.h
  28.  
  29. mssser.obj:    mssser.asm mssdef.h
  30.  
  31. mssset.obj:    mssset.asm mssdef.h
  32.  
  33. msster.obj:    msster.asm mssdef.h
  34.  
  35. mssfin.obj:    mssfin.asm mssdef.h
  36.  
  37. # These are the system dependent modules for the HP 110/Plus. Use with the
  38. # appropriate Link command file msthpx.lnk.
  39.  
  40. msuhpx.obj:    msuhpx.asm mssdef.h
  41.  
  42. msxhpx.obj:    msxhpx.asm mssdef.h
  43.  
  44. kermit.exe:    msscmd.obj msscom.obj mssfil.obj mssker.obj mssrcv.obj\
  45.         mssscp.obj msssen.obj mssser.obj mssset.obj msster.obj\
  46.         msuhpx.obj msxhpx.obj mssfin.obj
  47.     LINK @msvhpx.lnk
  48.     Echo Make Kermit is done.
  49.  
  50. # Do the items above when Kermit.exe is rebuilt. Notice the use of a command
  51. # file for Link because the list of object files is too long for one line.
  52. # A sample command file msthpx.lnk is (mssfin must be LAST):
  53. #
  54. # msscmd+msscom+mssfil+mssker+mssrcv+mssscp+msssen+mssser+
  55. # mssset+msster+msuhpx+msxhpx+mssfin
  56. # Kermit;
  57. #
  58. # End of Kermit Make file.
  59.