|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T m
Length: 1185 (0x4a1) Types: TextFile Names: »msvhpx.mak«
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit └─⟦71044c191⟧ »EurOpenD3/misc/kermit.ms-2.32.tar.Z« └─⟦31f2d420d⟧ └─⟦this⟧ »msvhpx.mak«
echo off echo Constructing Kermit-MS version 2.30 for Hewlett Packard 110 and Plus. Break on Rem Assumes all files are on the current disk. Rem If there is insufficient disk space then the command Rem "masm filespec.asm;" Rem may be typed individually for each .asm file. Rem Note: files MSSDEF.H and MSTHPX.LNK must be in the current directory for Rem use by masm and link, respectively. Rem First, the system independent .asm files: msscmd, msscom, mssfil, mssker, Rem mssrcv, mssscp, msssen, mssser, mssset, msster, mssfin if not exist mssdef.h goto noheader echo Make an .OBJ file from each .ASM file. for %%f in (msscmd, msscom, mssfil, mssker, mssrcv, mssscp) do masm %%f; for %%f in (msssen, mssser, mssset, msster, mssfin) do masm %%f; Rem Second, the system dependent files: msuhpx, msxhpx for %%f in (msuhpx, msxhpx) do masm %%f; echo End of Assembly step. Rem Third, link the Object files, using the appropriate command file. echo Starting Link step. link @msthpx.lnk if errorlevel 1 goto badlink echo File MSTHPX.EXE is built. goto done :noheader echo ERROR - File MSSDEF.H is needed but could not be found. goto done :badlink echo LINKING ERROR. :done echo on