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

  1. # File MSVGRI.MAK                        2 March 1991
  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.  
  12. msscmd.obj:    msscmd.asm mssdef.h
  13.  
  14. msscom.obj:    msscom.asm mssdef.h
  15.  
  16. mssfil.obj:    mssfil.asm mssdef.h
  17.  
  18. mssker.obj:    mssker.asm mssdef.h
  19.  
  20. mssrcv.obj:    mssrcv.asm mssdef.h
  21.  
  22. mssscp.obj:    mssscp.asm mssdef.h
  23.  
  24. msssen.obj:    msssen.asm mssdef.h
  25.  
  26. mssser.obj:    mssser.asm mssdef.h
  27.  
  28. mssset.obj:    mssset.asm mssdef.h
  29.  
  30. msssho.obj:    msssho.asm mssdef.h
  31.  
  32. msster.obj:    msster.asm mssdef.h
  33.  
  34. msggri.obj:    msggri.asm mssdef.h
  35.  
  36. msugri.obj:    msugri.asm mssdef.h
  37.  
  38. msxgri.obj:    msxgri.asm mssdef.h
  39.  
  40.  
  41. msvgri.exe:    msscmd.obj msscom.obj mssfil.obj mssker.obj mssrcv.obj\
  42.         mssscp.obj msssen.obj mssser.obj mssset.obj msssho.obj\
  43.         msster.obj msggri.obj msugri.obj msxgri.obj
  44.     LINK @msvgri.lnk
  45.     Echo Make Kermit is done.
  46.  
  47. # Do the items above when Kermit.exe is rebuilt. Notice the use of a command
  48. # file for Link because the list of object files is too long for one line.
  49. # A sample command file msvhp1.lnk is:
  50. # msscmd+msscom+mssfil+mssker+mssrcv+mssscp+msssen+mssser+
  51. # mssset+msssho+msster+msggri+msugri+msxgri
  52. # msvgri;
  53. # End of Kermit Make file.
  54.