# File MSVP98.MAK. # # Makefile for MS-DOS Kermit on NEC PC-9801 family. # For use Microsoft's Make version 4.00. # Usage: "make msvp98.mak" with all source files in current directory. # # Written by Joe R. Doupnik. (modified by H.Fujii) # Blank lines are mandatory. # The inference macro below calls MASM to create .obj modules. .asm.obj: MASM $*.asm; # These are the dependency relations (.obj depends on .asm and .h): # First, the system independent files for Kermit-MS. # Make this using MASM on these two files if either has changed msscmd.obj: msscmd.asm mssdef.h # msscom has problem for NEC-PC9801, See msvp98.bwr # msscom.obj: msscom.asm mssdef.h mscp98.obj: mscp98.asm mssdef.h mssfil.obj: mssfil.asm mssdef.h mssker.obj: mssker.asm mssdef.h mssrcv.obj: mssrcv.asm mssdef.h mssscp.obj: mssscp.asm mssdef.h msssen.obj: msssen.asm mssdef.h mssser.obj: mssser.asm mssdef.h mssset.obj: mssset.asm mssdef.h msssho.obj: msssho.asm mssdef.h msster.obj: msster.asm mssdef.h # These are the system dependent modules for the NEC PC-9801. Use with the # appropriate Link command file msvp98.lnk. msgp98.obj: msgp98.asm msxp98.h msup98.obj: msup98.asm mssdef.h msxp98.h msxp98.obj: msxp98.asm mssdef.h msxp98.h msyp98.obj: msyp98.asm mssdef.h msxp98.h mszp98.obj: mszp98.asm mssdef.h msxp98.h msvp98.exe: msscmd.obj mscp98.obj mssfil.obj mssker.obj mssrcv.obj\ mssscp.obj msssen.obj mssser.obj mssset.obj msssho.obj\ msster.obj\ msgp98.obj msup98.obj msxp98.obj msyp98.obj mszp98.obj LINK @msvp98.lnk # msvp98.boo: msvp98.exe # msbmkb msvp98.exe msvp98.boo # Do the items above when Kermit is rebuilt. Notice the use of a command # file for Link because the list of object files is too long for one line. # A sample command file MSVP98.LNK is: # # msscmd+msscom+mssfil+mssker+mssrcv+mssscp+msssen+mssser+ # mssset+msssho+msster+msgp98+msup98+msxp98+msyp98+mszp98 # msvp98; # # End of Kermit Make file for NEC PC-9801 family.