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

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