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

  1. # File MSVP98.MAK.
  2. #
  3. # Makefile for MS-DOS Kermit on NEC PC-9801 family.
  4. # For use Microsoft's Make version 4.00.
  5. # Usage: "make msvp98.mak" with all source files in current directory.
  6. #
  7. # Written by Joe R. Doupnik. (modified by H.Fujii)
  8. # Blank lines are mandatory.
  9.  
  10. # The inference macro below calls MASM to create .obj modules.
  11. .asm.obj:
  12.         MASM $*.asm;
  13.  
  14. # These are the dependency relations (.obj depends on .asm and .h):
  15. # First, the system independent files for Kermit-MS.
  16.  
  17. # Make this     using MASM on these two files if either has changed
  18.  
  19. msscmd.obj:     msscmd.asm mssdef.h
  20.  
  21. # msscom has problem for NEC-PC9801, See msvp98.bwr
  22. # msscom.obj:     msscom.asm mssdef.h
  23.  
  24. mscp98.obj:    mscp98.asm mssdef.h
  25.  
  26. mssfil.obj:     mssfil.asm mssdef.h
  27.  
  28. mssker.obj:     mssker.asm mssdef.h
  29.  
  30. mssrcv.obj:     mssrcv.asm mssdef.h
  31.  
  32. mssscp.obj:     mssscp.asm mssdef.h
  33.  
  34. msssen.obj:     msssen.asm mssdef.h
  35.  
  36. mssser.obj:     mssser.asm mssdef.h
  37.  
  38. mssset.obj:     mssset.asm mssdef.h
  39.  
  40. msssho.obj:    msssho.asm mssdef.h
  41.  
  42. msster.obj:     msster.asm mssdef.h
  43.  
  44. # These are the system dependent modules for the NEC PC-9801. Use with the
  45. # appropriate Link command file msvp98.lnk.
  46.  
  47. msgp98.obj:     msgp98.asm msxp98.h
  48.  
  49. msup98.obj:     msup98.asm mssdef.h msxp98.h
  50.  
  51. msxp98.obj:     msxp98.asm mssdef.h msxp98.h
  52.  
  53. msyp98.obj:     msyp98.asm mssdef.h msxp98.h
  54.  
  55. mszp98.obj:     mszp98.asm mssdef.h msxp98.h
  56.  
  57. msvp98.exe:     msscmd.obj mscp98.obj mssfil.obj mssker.obj mssrcv.obj\
  58.                 mssscp.obj msssen.obj mssser.obj mssset.obj msssho.obj\
  59.                 msster.obj\
  60.                 msgp98.obj msup98.obj msxp98.obj msyp98.obj mszp98.obj
  61.         LINK @msvp98.lnk
  62.  
  63. # msvp98.boo:     msvp98.exe
  64. #        msbmkb msvp98.exe msvp98.boo
  65.  
  66. # Do the items above when Kermit is rebuilt.  Notice the use of a command
  67. # file for Link because the list of object files is too long for one line.
  68. # A sample command file MSVP98.LNK is:
  69. #
  70. # msscmd+msscom+mssfil+mssker+mssrcv+mssscp+msssen+mssser+
  71. # mssset+msssho+msster+msgp98+msup98+msxp98+msyp98+mszp98
  72. # msvp98;
  73. #
  74. # End of Kermit Make file for NEC PC-9801 family.
  75.